-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 815 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 815 Bytes
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
{
"name": "bacon/bacon-controller",
"description": "BaconController is a replacment for ZF2 controllers with testability in mind.",
"license" : "BSD-2-Clause",
"homepage": "https://github.com/Bacon/BaconController",
"require": {
"php": ">=5.4.0",
"zendframework/zend-console": "~2.3",
"zendframework/zend-eventmanager": "~2.3",
"zendframework/zend-http": "~2.3",
"zendframework/zend-mvc": "~2.3",
"zendframework/zend-servicemanager": "~2.3",
"zendframework/zend-stdlib": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "~4.2",
"squizlabs/php_codesniffer": "2.0.*@dev",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": {
"BaconController\\": "src"
}
}
}