-
Notifications
You must be signed in to change notification settings - Fork 532
/
composer.json
57 lines (57 loc) · 1.69 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
{
"name": "lucadegasperi/oauth2-server-laravel",
"description": "An OAuth 2.0 bridge for Laravel and Lumen",
"keywords": ["oauth2", "oauth", "server", "api", "laravel", "lumen"],
"license": "MIT",
"authors": [
{
"name": "Luca Degasperi",
"email": "[email protected]"
},
{
"name": "Vincent Klaiber",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"illuminate/database": "5.1.* || 5.2.* || 5.3.* || 5.4.*",
"illuminate/console": "5.1.* || 5.2.* || 5.3.* || 5.4.*",
"illuminate/contracts": "5.1.* || 5.2.* || 5.3.* || 5.4.*",
"illuminate/http": "5.1.* || 5.2.* || 5.3.* || 5.4.*",
"illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.*",
"illuminate/config": "5.1.* || 5.2.* || 5.3.* || 5.4.*",
"league/oauth2-server": "4.1.*"
},
"require-dev": {
"orchestra/testbench": "3.1.* || 3.2.*",
"phpunit/phpunit": "^4.8 || ^5.0",
"phpspec/phpspec": "^2.2",
"mockery/mockery": "^0.9.4",
"henrikbjorn/phpspec-code-coverage": "^1.0"
},
"autoload": {
"psr-4": {
"LucaDegasperi\\OAuth2Server\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"LucaDegasperi\\OAuth2Server\\Tests\\": "tests"
},
"classmap": [
"database"
],
"files": [
"tests/AbstractTestCase.php",
"tests/integration/AbstractDBTestCase.php"
]
},
"extra": {
"branch-alias": {
"dev-master": "5.2-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}