-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.34 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
{
"name": "mvdstam/oauth2-server-laravel",
"description": "Laravel bridge for the league/oauth2-server package",
"license": "MIT",
"authors": [
{
"name": "Max van der Stam",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"league/oauth2-server": "^5.1",
"illuminate/support": "^5.1",
"illuminate/database": "^5.1",
"czim/laravel-repository": "^1.0",
"ramsey/uuid": "^3.5",
"lcobucci/jwt": "^3.2",
"nesbot/carbon": "^1.0",
"symfony/psr-http-message-bridge": "^1.0",
"zendframework/zend-diactoros": "^1.3",
"illuminate/contracts": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^5.0",
"mockery/mockery": "^0.9.9",
"mikey179/vfsStream": "^1.6",
"orchestra/database": "^3.1",
"orchestra/testbench": "^3.1",
"laravel/framework": "~5.3.0"
},
"autoload": {
"psr-4": {
"Mvdstam\\Oauth2ServerLaravel\\": "./src"
}
},
"autoload-dev": {
"classmap": [
"./tests/TestCase.php",
"./tests/IntegrationTestCase.php",
"./tests/AbstractGrantTypeTest.php"
],
"psr-4": {
"Mvdstam\\Oauth2ServerLaravel\\Tests\\": "./tests"
}
}
}