forked from as3io/modlr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
27 lines (27 loc) · 955 Bytes
/
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
{
"name": "actinoids/modlr-rest-odm",
"license": "Apache-2.0",
"type": "library",
"description": "Simplified PHP library for fast and efficient RESTful API for MongoDB. Designed for use with front end web frameworks such as EmberJS.",
"authors": [
{
"name": "Jacob Bare",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Actinoids\\Modlr\\RestOdm": "src/"
}
},
"require": {
"php": ">=5.4",
"symfony/http-foundation": "~2.6"
},
"suggest": {
"symfony/yaml": "Required if you'd like load metadata from YAML format.",
"ext-igbinary": "Required if you'd like to use the provided igbinary metadata cache serialization.",
"ext-redis": "Required if you'd like to cache metadata using Redis.",
"doctrine/mongodb-odm":"Required if you'd like to load metadata from the Doctrine ODM."
}
}