-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 1017 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 1017 Bytes
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
{
"name": "as3/modlr",
"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": "jacob.bare@gmail.com"
}
],
"autoload": {
"psr-4": {
"As3\\Modlr\\": "src/"
}
},
"require": {
"php": ">=5.4",
"symfony/http-foundation": "^2.6 || ^3.0"
},
"suggest": {
"as3/modlr-api-jsonapiorg": "Provides jsonapi.org REST API spec and functionality.",
"as3/modlr-persister-mongodb": "Provides MongoDB persistence functionality.",
"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."
}
}