This repository has been archived by the owner on Nov 11, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 190
/
composer.json
46 lines (46 loc) · 1.51 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
{
"name": "doctrine/mongodb",
"type": "library",
"description": "PHP Doctrine MongoDB project is a library that provides a wrapper around the native PHP Mongo PECL extension to provide additional functionality.",
"keywords": [
"database",
"persistence",
"php",
"mongodb",
"abstraction"
],
"homepage": "https://www.doctrine-project.org/projects/mongodb.html",
"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.6 || ^7.0",
"ext-mongo": "^1.6.7",
"doctrine/common": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.0",
"jmikola/geojson": "^1.0"
},
"suggest": {
"jmikola/geojson": "Support GeoJSON geometry objects in 2dsphere queries",
"alcaeus/mongo-php-adapter": "Allows usage of PHP 7"
},
"autoload": {
"psr-0": { "Doctrine\\MongoDB": "lib/" }
},
"autoload-dev": {
"psr-0": { "Doctrine\\MongoDB\\Tests": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.6.x-dev"
}
}
}