-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.54 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
{
"name": "noiselabs/zf-debug-utils",
"description": "WebUI and Console commands for debugging ZF2 apps",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vítor Brandão",
"email": "[email protected]"
}
],
"require": {
"php": "^5.5 || ^7.0",
"zendframework/zend-console": "^2.3",
"zendframework/zend-modulemanager": "^2.3",
"zendframework/zend-mvc": "^2.3",
"zendframework/zend-servicemanager": ">=2.3 <2.8",
"zendframework/zend-view": "^2.3",
"rwoverdijk/assetmanager": "^1.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11",
"phpunit/phpunit": "^3.7 || ^4.0",
"zendframework/zend-i18n": "^2.3",
"zendframework/zend-log": "^2.3",
"zendframework/zend-test": "^2.3",
"zendframework/zend-serializer": "^2.3"
},
"autoload": {
"psr-4": {
"Noiselabs\\ZfDebugModule\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Noiselabs\\ZfDebugModuleTest\\": "test"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"upload-coverage": "coveralls -v",
"cs-check": "./vendor/bin/php-cs-fixer --config-file=.php_cs fix -v --diff --dry-run",
"cs-fix": "./vendor/bin/php-cs-fixer --config-file=.php_cs fix -v",
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover build/code-coverage/clover/clover.xml --coverage-html build/code-coverage/html/"
}
}