forked from doctrine/mongodb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.4 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": "doctrine/mongodb-odm",
"type": "library",
"description": "Doctrine MongoDB Object Document Mapper",
"keywords": ["odm", "database", "persistence", "mongodb"],
"homepage": "http://www.doctrine-project.org",
"license": "MIT",
"authors": [
{ "name": "Bulat Shakirzyanov", "email": "mallluhuct@gmail.com" },
{ "name": "Kris Wallsmith", "email": "kris.wallsmith@gmail.com" },
{ "name": "Jonathan H. Wage", "email": "jonwage@gmail.com" },
{ "name": "Jeremy Mikola", "email": "jmikola@gmail.com" },
{ "name": "Maciej Malarz", "email": "malarzm@gmail.com" },
{ "name": "Andreas Braun", "email": "alcaeus@alcaeus.org" }
],
"require": {
"php": ">=5.3.2",
"symfony/console": "~2.3|~3.0",
"doctrine/annotations": "~1.0",
"doctrine/collections": "~1.1",
"doctrine/common": "~2.4",
"doctrine/cache": "~1.0",
"doctrine/inflector": "~1.0",
"doctrine/instantiator": "~1.0.1",
"doctrine/mongodb": ">=1.1.5,<2.0"
},
"require-dev": {
"symfony/yaml": "~2.3|~3.0"
},
"suggest": {
"symfony/yaml": "Enables the YAML metadata mapping driver"
},
"autoload": {
"psr-0": { "Doctrine\\ODM\\MongoDB": "lib/" }
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}