-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 941 Bytes
/
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
{
"name": "aloframework/handlers",
"description": "The error and exception handlers of AloFramework",
"prefer-stable": true,
"type": "library",
"license": "Apache-2.0",
"homepage": "https://github.com/aloframework/handlers",
"keywords": [
"PHP",
"error",
"exception",
"shutdown",
"handler",
"configurable"
],
"authors": [
{
"name": "Art",
"email": "[email protected]",
"role": "Developer",
"homepage": "https://github.com/Alorel"
}
],
"support": {
"issues": "https://github.com/aloframework/handlers/issues"
},
"require": {
"php": ">=5.5.9",
"symfony/var-dumper": "^2.7 || ^3.0",
"symfony/console": "^2.7 || ^3.0",
"aloframework/log": "^3.0",
"aloframework/common": "^2.0",
"aloframework/config": "^2.0",
"raveren/kint": "^1.0"
},
"autoload": {
"psr-4": {
"AloFramework\\Handlers\\": "src/class"
}
}
}