forked from doctrine/mongodb-odm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.35 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
{
"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": "[email protected]" },
{ "name": "Kris Wallsmith", "email": "[email protected]" },
{ "name": "Jonathan H. Wage", "email": "[email protected]" },
{ "name": "Jeremy Mikola", "email": "[email protected]" },
{ "name": "Maciej Malarz", "email": "[email protected]" },
{ "name": "Andreas Braun", "email": "[email protected]" }
],
"require": {
"php": "^7.1",
"symfony/console": "~2.3|~3.0|^4.0",
"doctrine/annotations": "~1.2",
"doctrine/collections": "~1.1",
"doctrine/common": "~2.4",
"doctrine/cache": "~1.0",
"doctrine/instantiator": "^1.0.1",
"mongodb/mongodb": "^1.2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"jmikola/geojson": "^1.0",
"phpstan/phpstan": "^0.9.2",
"doctrine/coding-standard": "^4.0"
},
"autoload": {
"psr-0": { "Doctrine\\ODM\\MongoDB": "lib/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}