-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
32 lines (32 loc) · 952 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
{
"name": "nilportugues/jsonapi-bundle",
"homepage": "http://nilportugues.com",
"type": "library",
"description": "Symfony 2 & 3 JSON API Transformer Package",
"keywords": ["sf2", "symfony", "symfony2", "symfony3", "lumen", "json", "api", "jsonapi", "serializer", "transformer", "psr7", "response"],
"license": "MIT",
"authors": [
{
"name": "Nil Portugués Calderó",
"email": "[email protected]",
"role": "Project Lead Developer"
}
],
"autoload": {
"psr-4": {
"NilPortugues\\Symfony\\JsonApiBundle\\": "src/"
}
},
"require": {
"php": ">=5.5.0",
"nilportugues/json-api": "^2.4"
},
"require-dev": {
"symfony/symfony": "^2.0|^3.0",
"friendsofphp/php-cs-fixer": "^1.9",
"nilportugues/php_backslasher": "^0.2"
},
"config": {
"preferred-install": "dist"
}
}