|
1 | 1 | {
|
2 | 2 | "name": "lucadegasperi/oauth2-server-laravel",
|
3 |
| - "description": "Laravel wrapper for the OAuth 2.0 Server package league/oauth2-server.", |
4 |
| - "keywords": [ |
5 |
| - "laravel", |
6 |
| - "oauth2", |
7 |
| - "oauth", |
8 |
| - "server", |
9 |
| - "api" |
10 |
| - ], |
| 3 | + "description": "A OAuth 2.0 bridge for Laravel and Lumen", |
| 4 | + "keywords": ["oauth2", "oauth", "server", "api", "laravel", "lumen"], |
| 5 | + "license": "MIT", |
11 | 6 | "authors": [
|
12 | 7 | {
|
13 | 8 | "name": "Luca Degasperi",
|
14 | 9 |
|
15 | 10 | }
|
16 | 11 | ],
|
17 | 12 | "require": {
|
18 |
| - "php": ">=5.4.0", |
19 |
| - "illuminate/database": "5.0.*|5.1.*", |
20 |
| - "illuminate/console": "5.0.*|5.1.*", |
21 |
| - "illuminate/contracts": "5.0.*|5.1.*", |
22 |
| - "illuminate/http": "5.0.*|5.1.*", |
23 |
| - "illuminate/support": "5.0.*|5.1.*", |
24 |
| - "illuminate/config": "5.0.*|5.1.*", |
| 13 | + "php": ">=5.5.9", |
| 14 | + "illuminate/database": "5.1.*", |
| 15 | + "illuminate/console": "5.1.*", |
| 16 | + "illuminate/contracts": "5.1.*", |
| 17 | + "illuminate/http": "5.1.*", |
| 18 | + "illuminate/support": "5.1.*", |
| 19 | + "illuminate/config": "5.1.*", |
25 | 20 | "league/oauth2-server": "4.1.*"
|
26 | 21 | },
|
27 | 22 | "require-dev": {
|
28 |
| - "orchestra/testbench": "3.1.*@dev", |
| 23 | + "orchestra/testbench": "3.1.*", |
29 | 24 | "phpunit/phpunit": "~4.0",
|
30 | 25 | "phpspec/phpspec": "~2.0",
|
31 | 26 | "mockery/mockery": "~0.9",
|
|
34 | 29 | "autoload": {
|
35 | 30 | "psr-4": {
|
36 | 31 | "LucaDegasperi\\OAuth2Server\\": "src"
|
| 32 | + } |
| 33 | + }, |
| 34 | + "autoload-dev": { |
| 35 | + "psr-4": { |
| 36 | + "LucaDegasperi\\OAuth2Server\\Tests\\": "tests" |
37 | 37 | },
|
38 | 38 | "classmap": [
|
39 |
| - "seeds", |
40 |
| - "tests/TestCase.php", |
41 |
| - "tests/integration/DBTestCase.php" |
| 39 | + "database" |
| 40 | + ], |
| 41 | + "files": [ |
| 42 | + "tests/AbstractTestCase.php", |
| 43 | + "tests/integration/AbstractDBTestCase.php" |
42 | 44 | ]
|
43 | 45 | },
|
44 | 46 | "extra": {
|
45 | 47 | "branch-alias": {
|
46 |
| - "dev-master": "4.1-dev" |
| 48 | + "dev-develop": "5.0-dev" |
47 | 49 | }
|
48 | 50 | },
|
49 | 51 | "minimum-stability": "dev",
|
50 |
| - "license": "MIT" |
| 52 | + "prefer-stable": true |
51 | 53 | }
|
0 commit comments