forked from FriendsOfSymfony/FOSRestBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 3.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "friendsofsymfony/rest-bundle",
"type": "symfony-bundle",
"description": "This Bundle provides various tools to rapidly develop RESTful API's with Symfony",
"keywords": ["rest"],
"homepage": "http://friendsofsymfony.github.com",
"license": "MIT",
"authors": [
{
"name": "Lukas Kahwe Smith",
"email": "[email protected]"
},
{
"name": "Konstantin Kudryashov",
"email": "[email protected]"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSRestBundle/contributors"
}
],
"autoload":{
"psr-4":{
"FOS\\RestBundle\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"require": {
"php": "^5.5.9|~7.0",
"psr/log": "^1.0",
"symfony/config": "^2.7|^3.0|^4.0",
"symfony/debug": "^2.7|^3.0|^4.0",
"symfony/dependency-injection": "^2.7|^3.0|^4.0",
"symfony/event-dispatcher": "^2.7|^3.0|^4.0",
"symfony/finder": "^2.7|^3.0|^4.0",
"symfony/framework-bundle": "^2.7|^3.0|^4.0",
"symfony/http-foundation": "^2.7|^3.0|^4.0",
"symfony/http-kernel": "^2.7|^3.0|^4.0",
"symfony/routing": "^2.7|^3.0|^4.0",
"symfony/security-core": "^2.7|^3.0|^4.0",
"symfony/templating": "^2.7|^3.0|^4.0",
"doctrine/inflector": "^1.0",
"willdurand/negotiation": "^2.0",
"willdurand/jsonp-callback-validator": "^1.0"
},
"require-dev": {
"sensio/framework-extra-bundle": "^3.0.13|^4.0|^5.0",
"symfony/phpunit-bridge": "^3.2|^4.0",
"symfony/asset": "^2.7|^3.0|^4.0",
"symfony/form": "^2.7|^3.0|^4.0",
"symfony/validator": "^2.7|^3.0|^4.0",
"symfony/serializer": "^2.7.11|^3.0.4|^4.0",
"symfony/yaml": "^2.7|^3.0|^4.0",
"symfony/security-bundle": "^2.7|^3.0|^4.0",
"symfony/web-profiler-bundle": "^2.7|^3.0|^4.0",
"symfony/twig-bundle": "^2.7|^3.0|^4.0",
"symfony/browser-kit": "^2.7|^3.0|^4.0",
"symfony/dependency-injection": "^2.7|^3.0|^4.0",
"symfony/expression-language": "~2.7|^3.0|^4.0",
"symfony/css-selector": "^2.7|^3.0|^4.0",
"phpoption/phpoption": "^1.1",
"jms/serializer-bundle": "^1.2|^2.0",
"psr/http-message": "^1.0"
},
"minimum-stability": "dev",
"suggest": {
"sensio/framework-extra-bundle": "Add support for route annotations and the view response listener, requires ^3.0",
"jms/serializer-bundle": "Add support for advanced serialization capabilities, recommended, requires ^1.0",
"symfony/expression-language": "Add support for using the expression language in the routing, requires ^2.7|^3.0",
"symfony/serializer": "Add support for basic serialization capabilities and xml decoding, requires ^2.7|^3.0",
"symfony/validator": "Add support for validation capabilities in the ParamFetcher, requires ^2.7|^3.0"
},
"conflict": {
"sensio/framework-extra-bundle": "<3.0.13",
"jms/serializer-bundle": "<1.2.0",
"jms/serializer": "1.3.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
}
}