forked from doctrine/DoctrineMongoODMModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "doctrine/doctrine-mongo-odm-module",
"description": "Zend Framework 2 Module that provides Doctrine MongoDB ODM functionality",
"type": "library",
"keywords": [
"doctrine",
"odm",
"mongodb",
"module",
"zf2"
],
"homepage": "http://www.doctrine-project.org/",
"license": "MIT",
"authors": [
{
"name": "Kyle Spraggs",
"email": "theman@spiffyjr.me",
"homepage": "http://www.spiffyjr.me/"
},
{
"name": "Marco Pivetta",
"email": "ocramius@gmail.com",
"homepage": "http://marco-pivetta.com/"
},
{
"name": "Evan Coury",
"email": "me@evancoury.com",
"homepage": "http://blog.evan.pro/"
},
{
"name": "Guilherme Blanco",
"email": "guilhermeblanco@hotmail.com"
},
{
"name": "Tim Roediger",
"email": "superdweebie@gmail.com",
"homepage": "http://superdweebie.com"
}
],
"require": {
"php": ">=5.4",
"doctrine/doctrine-module": "~1.0",
"doctrine/mongodb-odm": "~1.0",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-servicemanager": "2.*",
"zendframework/zend-stdlib": "2.*"
},
"require-dev": {
"zendframework/zendframework": "2.*",
"phpunit/phpunit": "~4.8 || ~5.0"
},
"autoload": {
"psr-0": {
"DoctrineMongoODMModule\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"DoctrineMongoODMModuleTest\\": "tests/"
}
}
}