forked from lucadegasperi/oauth2-server-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.33 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
{
"name": "lucadegasperi/oauth2-server-laravel",
"description": "Laravel wrapper for the OAuth 2.0 Server package league/oauth2-server.",
"keywords": [
"laravel",
"oauth2",
"oauth",
"server",
"api"
],
"authors": [
{
"name": "Luca Degasperi",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/database": "5.0.*|5.1.*",
"illuminate/console": "5.0.*|5.1.*",
"illuminate/contracts": "5.0.*|5.1.*",
"illuminate/http": "5.0.*|5.1.*",
"illuminate/support": "5.0.*|5.1.*",
"illuminate/config": "5.0.*|5.1.*",
"league/oauth2-server": "4.1.*"
},
"require-dev": {
"orchestra/testbench": "3.1.*@dev",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.0",
"mockery/mockery": "~0.9",
"henrikbjorn/phpspec-code-coverage": "~1.0"
},
"autoload": {
"psr-4": {
"LucaDegasperi\\OAuth2Server\\": "src"
},
"classmap": [
"seeds",
"tests/TestCase.php",
"tests/integration/DBTestCase.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "4.1-dev"
}
},
"minimum-stability": "dev",
"license": "MIT"
}