forked from lucadegasperi/oauth2-server-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 984 Bytes
/
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
{
"name": "lucadegasperi/oauth2-server-laravel",
"description": "A Laravel 4 wrapper for the popular OAuth 2.0 Server package league/oauth2-server",
"keywords": [
"laravel",
"oauth2",
"oauth",
"server",
"api"
],
"authors": [
{
"name": "Luca Degasperi",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"league/oauth2-server": "2.1.x"
},
"require-dev": {
"phpunit/phpunit": "3.7.22",
"mockery/mockery": ">=0.7.2",
"league/phpunit-coverage-listener": "v1.1.2",
"orchestra/testbench": "2.0.*",
"squizlabs/php_codesniffer": "1.*"
},
"autoload": {
"classmap": [
"src/migrations",
"tests/TestCase.php"
],
"psr-0": {
"LucaDegasperi\\OAuth2Server": "src/"
}
},
"minimum-stability": "dev",
"license": "MIT"
}