-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
40 lines (40 loc) · 1005 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
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "steffenbrem/json-api-bundle",
"description": "Integration of JSON API with Symfony2 using JMS Serializer (FOSRestBundle).",
"keywords": [
"rest",
"jsonapi",
"json-api"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Steffen Brem",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.9",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/yaml": "~2.3|~3.0",
"symfony/property-access": "~2.3|~3.0",
"jms/serializer-bundle": "~0.13|~1.0|~2.0",
"pagerfanta/pagerfanta": "~1.0",
"willdurand/hateoas": ">2.0"
},
"autoload": {
"psr-0": {
"Mango\\Bundle\\JsonApiBundle": ""
}
},
"target-dir": "Mango/Bundle/JsonApiBundle",
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
}
}
}