-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
56 lines (56 loc) · 1.5 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
{
"name": "snapshotpl/zf-snap-php-debug-bar",
"description": "PHP Debug Bar module for Zend Framework 2",
"keywords": [
"debugbar",
"zf2",
"zend framework",
"zend framework 2",
"debug",
"exception",
"log",
"logger"
],
"authors": [
{
"name": "Witold Wasiczko",
"email": "[email protected]",
"homepage": "http://www.psd2html.pl/"
}
],
"require": {
"php": "^5.6 || ^7.0",
"maximebf/debugbar": "^1.10",
"zendframework/zend-mvc": "^2.4 || ^3.0",
"zendframework/zend-log": "^2.4",
"zendframework/zend-servicemanager": "^2.6 || ^3.0",
"zendframework/zend-view": "^2.4",
"zendframework/zend-eventmanager": "^2.4 || ^3.0",
"zendframework/zend-http": "^2.4",
"zendframework/zend-modulemanager": "^2.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7.25 || ^6.5.5",
"zendframework/zend-test": "^2.4 || ^3.0",
"zendframework/zend-config": "^2.4",
"zendframework/zend-serializer": "^2.4",
"zendframework/zend-i18n": "^2.4",
"zendframework/zend-db": "^2.4"
},
"autoload": {
"psr-4": {
"ZfSnapPhpDebugBar\\": "src/"
},
"files": [
"src/Functions.php"
]
},
"autoload-dev": {
"psr-4": {
"ZfSnapPhpDebugBar\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}