forked from dingo/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "dingo/api",
"description": "A RESTful API package for the Laravel and Lumen frameworks.",
"keywords": ["restful", "api", "laravel", "dingo"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jason Lewis",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/routing": "~5.1",
"illuminate/support": "~5.1",
"dingo/blueprint": "0.1.*",
"league/fractal": ">=0.12.0",
"doctrine/annotations": "1.2.*",
"phpdocumentor/reflection-docblock": "2.0.*"
},
"require-dev": {
"lucadegasperi/oauth2-server-laravel": "5.0.*",
"tymon/jwt-auth": "0.5.*",
"laravel/lumen-framework": "~5.1",
"illuminate/auth": "~5.1",
"illuminate/cache": "~5.1",
"illuminate/events": "~5.1",
"illuminate/database": "~5.1",
"illuminate/pagination": "~5.1",
"illuminate/console": "~5.1",
"illuminate/filesystem": "~5.1",
"illuminate/log": "~5.1",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "~0.9",
"squizlabs/php_codesniffer": "~2.0"
},
"suggest": {
"lucadegasperi/oauth2-server-laravel": "Protect your API with OAuth 2.0.",
"tymon/jwt-auth": "Protect your API with JSON Web Tokens"
},
"autoload": {
"psr-4": {
"Dingo\\Api\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Dingo\\Api\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}