forked from DavidHavl/DhErrorLogging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 900 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
{
"name" : "davidhavl/dherrorlogging",
"description" : "Full featured error logging module for ZF2 application",
"type" : "library",
"keywords": [
"zend framework",
"zend framework 2",
"zf2",
"php-error",
"exception",
"error",
"error log",
"logger"
],
"homepage" : "https://github.com/DavidHavl/DhErrorLogging",
"require" : {
"zendframework/zendframework" : ">2.3.0",
"ccampbell/chromephp": "4.1.0"
},
"license" : "MIT",
"authors" : [
{
"name" : "David Havl",
"email" : "[email protected]",
"homepage" : "http://davidhavl.com",
"role" : "Developer"
}
],
"autoload": {
"psr-4": {
"DhErrorLogging\\": "src/"
},
"classmap" : [
"./Module.php"
]
}
}