-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.72 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "carlos/hephaestus",
"description": "A PHP library for functional error handling",
"type": "library",
"license": "GPL-3.0-or-later",
"autoload": {
"psr-4": {
"Hephaestus\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Hephaestus\\Tests\\": "tests/"
}
},
"autoload-symfony": {
"psr-4": {
"Hephaestus\\Bundle\\": "bundle/"
}
},
"authors": [
{
"name": "Carlos Matos",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"symfony/console": "^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/form": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0"
},
"suggest": {
"symfony/framework-bundle": "To use Hephaestus with Symfony Framework (^6.4 || ^7.0)",
"symfony/http-kernel": "Required for Symfony integration (^6.4 || ^7.0)",
"symfony/dependency-injection": "Required for Symfony service container integration (^6.4 || ^7.0)",
"symfony/config": "Required for Symfony bundle configuration (^6.4 || ^7.0)",
"symfony/http-foundation": "Required for HTTP-aware exceptions (^6.4 || ^7.0)",
"symfony/form": "For integration with Symfony forms (^6.4 || ^7.0)"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"bin": [
"bin/hephaestus"
]
}