forked from doctrine/DoctrineMongoDBBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.18 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": "doctrine/mongodb-odm-bundle",
"type": "symfony-bundle",
"description": "Symfony2 Doctrine MongoDB Bundle",
"keywords": ["persistence", "mongodb", "symfony"],
"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]"}
],
"require": {
"php": ">=5.3.2",
"doctrine/mongodb-odm": ">=1.0.0-beta5,<1.1-dev",
"symfony/options-resolver": "2.1.*@beta",
"symfony/doctrine-bridge": "2.1.*@beta",
"symfony/framework-bundle": "2.1.*@beta"
},
"require-dev": {
"doctrine/data-fixtures": "@dev"
},
"suggest": {
"doctrine/data-fixtures": "Load data fixtures"
},
"minimum-stability": "dev",
"autoload": {
"psr-0": {
"Doctrine\\Bundle\\MongoDBBundle": ""
}
},
"target-dir": "Doctrine/Bundle/MongoDBBundle",
"extra": {
"branch-alias": {
"dev-master": "3.0-dev",
"dev-2.0": "2.2-dev"
}
}
}