forked from doctrine/mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.25 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
{
"name": "fcpauldiaz/mongodb",
"type": "library",
"description": "Doctrine MongoDB Abstraction Layer",
"keywords": ["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": "^5.5 || ^7.0",
"ext-mongodb": ">=1.0",
"doctrine/common": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "~4.8|~5.0",
"jmikola/geojson": "^1.0"
},
"suggest": {
"jmikola/geojson": "Support GeoJSON geometry objects in 2dsphere queries"
},
"autoload": {
"psr-0": { "Doctrine\\MongoDB": "lib/" }
},
"autoload-dev": {
"psr-0": { "Doctrine\\MongoDB\\Tests": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.4.x-dev"
}
}
}