-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.04 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
{
"name": "exsyst/api-bundle",
"type": "symfony-bundle",
"description": "Provides several helpers to build API's",
"license": "Apache-2.0",
"authors": [{
"name": "EXSyst"
}],
"require": {
"php": ">=5.5",
"symfony/framework-bundle": "^2.7|^3.0",
"exsyst/api": "~0.3"
},
"require-dev": {
"symfony/phpunit-bridge": "^2.7|^3.0",
"symfony/expression-language": "^2.7|^3.0",
"symfony/browser-kit": "^2.7|^3.0",
"symfony/validator": "^2.7|^3.0",
"symfony/serializer": "^2.7|^3.0",
"symfony/property-access": "^2.7|^3.0",
"symfony/css-selector": "^2.7|^3.0",
"jms/serializer-bundle": "^1.0",
"phpoption/phpoption": "^1.1",
"composer/semver": "^1.0"
},
"suggest": {
"symfony/serializer": "For using the serialization controller features.",
"jms/serializer-bundle": "For using the serialization controller features.",
"composer/semver": "For using the versioning features."
},
"autoload": {
"psr-4": {
"EXSyst\\Bundle\\ApiBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "0.2.x-dev"
}
}
}