-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 946 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
33
34
35
36
37
{
"name" : "cristianp6/slim-json-api-helper",
"description" : "Slim3 JSON API Request & Response Helper inspired by jsonapi.org",
"type" : "library",
"authors" : [
{
"name" : "Adar Porat",
"email" : "[email protected]",
"homepage" : "http://github.com/aporat"
},
{
"name" : "Cristian Pascottini",
"email" : "[email protected]",
"homepage" : "http://github.com/cristianp6"
}
],
"keywords" : [ "slim", "json", "api" ],
"homepage" : "https://github.com/cristianp6/slim-json-api-helper",
"license" : [ "Apache-2.0" ],
"require" : {
"php" : ">=5.5",
"slim/slim": "~3"
},
"require-dev": {
"phpro/grumphp": "^0.7.1",
"phpunit/phpunit": "^4.0"
},
"autoload": {
"psr-4": {
"JsonApiHelper\\": "src/"
}
},
"support" : {
"email" : "[email protected]",
"issues" : "https://github.com/cristianp6/slim-json-api-helper/issues"
}
}