-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
34 lines (34 loc) · 1.03 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
{
"name": "mattjanssen/api-response-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for transforming controller action returns and exceptions into JSON API responses",
"keywords": [],
"homepage": "https://github.com/mattjanssen/api-response-bundle",
"license": "MIT",
"authors": [
{
"name": "Matt Janssen",
"email": "matt@mattjanssen.com"
}
],
"require": {
"php": "^5.4|^7",
"symfony/symfony": "^2.4|^3|^4|^5",
"sensio/framework-extra-bundle": "^3|^4|^5"
},
"require-dev": {
"symfony/phpunit-bridge": "^3.4.19|^4.1.8|^5",
"mockery/mockery": "^0.9.5|^1",
"phpoption/phpoption": "^1.1",
"jms/serializer-bundle": "^1|^2|^3"
},
"suggest": {
"jms/serializer-bundle": "For serializing with the JMS Serializer"
},
"autoload": {
"psr-4": {
"MattJanssen\\ApiResponseBundle\\": "src/",
"MattJanssen\\ApiResponseBundle\\Test\\": "tests/"
}
}
}