-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 944 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": "chefsplate/laravel-api-response-formatter",
"description": "Laravel-integrated formatter for consistent and customizable JSON responses",
"keywords": ["laravel", "api", "response format", "response", "format", "json", "doctrine", "odm", "orm"],
"homepage": "https://github.com/chefsplate/laravel-api-response-formatter",
"license": "MIT",
"authors": [
{
"name": "David Chang",
"email": "[email protected]"
},
{
"name": "Brent Manza",
"email": "[email protected]"
},
{
"name": "Ly Nguyen",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"laravel/framework": "5.3.*|5.4.*",
"phpdocumentor/reflection-docblock": "^3.1",
"phpunit/phpunit": "5.6.*"
},
"autoload": {
"psr-4": {
"ChefsPlate\\API\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}