forked from ralphowino/restful-api-helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (33 loc) · 832 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
{
"name": "ralphowino/restful-api-helper",
"description": "This is a starter package for a laravel api using JWT authentication and the Dingo api package",
"keywords": ["laravel", "api", "starter"],
"license": "MIT",
"authors": [
{
"name": "Samuel Kubai",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"dingo/api": "1.0.*@dev",
"tymon/jwt-auth": "0.5.*",
"barryvdh/laravel-cors": "*"
},
"require-dev": {
"phpspec/phpspec": "~2.1"
},
"autoload": {
"psr-4": {
"Ralphowino\\ApiStarter\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}