forked from nilportugues/php-json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.02 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
{
"name": "nilportugues/json-api",
"type": "library",
"description": "Serializer transformers outputting valid API responses in JSON, JSON API and HAL+JSON API formats.",
"keywords": ["json", "api", "jsonapi", "serializer", "transformer", "psr7", "response"],
"homepage": "http://nilportugues.com",
"license": "MIT",
"authors": [
{
"name": "Nil Portugués Calderó",
"email": "[email protected]",
"role": "Project Lead Developer"
}
],
"require": {
"php": ">=5.5.0",
"nilportugues/api-transformer": "<=3.0.0",
"symfony/psr-http-message-bridge" : "^0.2|^0.3"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"friendsofphp/php-cs-fixer": "^1.9",
"doctrine/orm": "^2.5"
},
"autoload": {
"psr-4": {
"NilPortugues\\Api\\JsonApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NilPortugues\\Tests\\Api\\JsonApi\\": "tests/"
}
}
}