-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
48 lines (48 loc) · 1.17 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
{
"name": "ghislainf/zf2-whoops",
"description": "PHP whoops error on ZF2 framework",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"tags": [
"zend framework",
"zf2",
"whoops"
],
"homepage": "https://github.com/ghislainf/zf2-whoops",
"authors": [
{
"name": "Ghislain de Fontenay",
"homepage": "http://www.ghislainf.me/",
"role": "Developer"
},
{
"name": "Filipe Dobreira",
"homepage": "https://github.com/filp"
},
{
"name": "Balázs Németh",
"email": "[email protected]"
},
{
"name": "Andreas Frömer",
"homepage": "https://github.com/icanhazstring"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-eventmanager": "*",
"zendframework/zend-config": "*",
"zendframework/zend-mvc": "*",
"zendframework/zend-console": "*",
"filp/whoops": "2.*"
},
"autoload": {
"psr-0": {
"zf2-whoops": "src/"
},
"classmap": [
"./Module.php"
]
}
}