-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 993 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
{
"name": "spiffy/spiffy-crud",
"description": "ZF2 module for managing entities",
"homepage": "http://www.github.com/spiffyjr/spiffy-crud.git",
"require": {
"php": ">=5.3.3",
"zendframework/zend-config": "~2.2",
"zendframework/zend-form": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-stdlib": "~2.2"
},
"require-dev": {
"doctrine/doctrine-orm-module": "0.*",
"mockery/mockery": "0.*",
"phpunit/phpunit": "3.*",
"spiffy/spiffy-test": "dev-master"
},
"suggest": {
"spiffy/spiffy-datatables": "Used by default for displaying lists"
},
"autoload": {
"psr-0": {
"SpiffyCrud": "src/",
"SpiffyCrudTest": "test/"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
}
}