-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (41 loc) · 1.08 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": "eoko/zf-console",
"description": " ",
"license": "BSD-3-Clause",
"keywords": [
"eoko",
"zf2",
"console"
],
"homepage": "https://github.com/eoko/zf-console",
"autoload": {
"psr-4": {
"Eoko\\Console\\": "src/"
}
},
"require": {
"php": ">=5.5",
"zendframework/zend-stdlib": "~2.5",
"zendframework/zend-console": "~2.5",
"mustache/mustache": "~2.8",
"thunderer/shortcode": "~0.3"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"ZendTest\\Console\\": "test/"
}
},
"require-dev": {
"satooshi/php-coveralls": "^0.7.0@dev",
"fabpot/php-cs-fixer": "1.7.*",
"phpunit/PHPUnit": "~4.0",
"zendframework/zend-filter": "~2.5",
"zendframework/zend-json": "~2.5",
"zendframework/zend-validator": "~2.5",
"phpunit/phpunit": "^5.0@dev",
"mockery/mockery": "^0.9",
"zendframework/zend-servicemanager": "^2.5@dev"
}
}