-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·42 lines (42 loc) · 1.15 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
{
"name": "zucchi/doctrine",
"description": "Zucchi Extensions for Doctrine",
"type": "library",
"keywords": [
"doctrine",
"extensions",
"library",
"zf2"
],
"homepage": "https://github.com/zucchi/ZucchiDoctrine",
"authors" : [{
"name": "Matt Cockayne",
"email" : "[email protected]",
"homepage" : "http://devincharge.com/"
}],
"license": "BSD-3-Clause",
"require": {
"php": ">=5.5.29",
"zucchi/zucchi": ">=0.15",
"zendframework/zend-form": "2.*",
"zendframework/zend-eventmanager": "2.*",
"zendframework/zend-servicemanager": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-stdlib": "2.*",
"doctrine/doctrine-orm-module": ">=0.9",
"doctrine/doctrine-mongo-odm-module": ">=0.9",
"doctrine/data-fixtures": "1.*",
"gedmo/doctrine-extensions": "2.4.6"
},
"require-dev": {
"codeception/codeception": "2.1.2"
},
"autoload": {
"psr-0": {
"ZucchiDoctrine": "src/"
},
"classmap": [
"./Module.php"
]
}
}