-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.1 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
36
37
38
39
40
41
{
"name": "dingo/api",
"description": "A RESTful API package for the Laravel framework.",
"keywords": ["restful", "api", "laravel", "dingo"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jason Lewis",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~4.1",
"league/fractal": "0.8.*"
},
"require-dev": {
"lucadegasperi/oauth2-server-laravel": "1.0.*",
"illuminate/routing": "~4.1",
"illuminate/events": "~4.1",
"illuminate/auth": "~4.1",
"illuminate/database": "~4.1",
"illuminate/pagination": "~4.1",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "1.*"
},
"suggest": {
"lucadegasperi/oauth2-server-laravel": "Use the League OAuth 2.0 server to protect your API."
},
"autoload": {
"psr-4": {
"Dingo\\Api\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.7-dev"
}
}
}