Skip to content

Commit c9e5e4d

Browse files
committed
Use specific Laravel version
We wont know if this package will break in Laravel 5.3. Laravel doesn't follow SemVer. This way we can get ahead of future problems. This closes dingo#961
1 parent 9c28813 commit c9e5e4d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
],
1212
"require": {
1313
"php": "^5.5.9 || ^7.0",
14-
"illuminate/routing": "~5.1",
15-
"illuminate/support": "~5.1",
14+
"illuminate/routing": "5.1.* || 5.2.*",
15+
"illuminate/support": "5.1.* || 5.2.*",
1616
"dingo/blueprint": "0.1.*",
1717
"league/fractal": ">=0.12.0",
1818
"doctrine/annotations": "1.2.*",
@@ -21,15 +21,15 @@
2121
"require-dev": {
2222
"lucadegasperi/oauth2-server-laravel": "5.0.*",
2323
"tymon/jwt-auth": "1.0.*",
24-
"laravel/lumen-framework": "~5.1",
25-
"illuminate/auth": "~5.1",
26-
"illuminate/cache": "~5.1",
27-
"illuminate/events": "~5.1",
28-
"illuminate/database": "~5.1",
29-
"illuminate/pagination": "~5.1",
30-
"illuminate/console": "~5.1",
31-
"illuminate/filesystem": "~5.1",
32-
"illuminate/log": "~5.1",
24+
"laravel/lumen-framework": "5.1.* || 5.2.*",
25+
"illuminate/auth": "5.1.* || 5.2.*",
26+
"illuminate/cache": "5.1.* || 5.2.*",
27+
"illuminate/events": "5.1.* || 5.2.*",
28+
"illuminate/database": "5.1.* || 5.2.*",
29+
"illuminate/pagination": "5.1.* || 5.2.*",
30+
"illuminate/console": "5.1.* || 5.2.*",
31+
"illuminate/filesystem": "5.1.* || 5.2.*",
32+
"illuminate/log": "5.1.* || 5.2.*",
3333
"phpunit/phpunit": "^4.8 || ^5.0",
3434
"mockery/mockery": "~0.9",
3535
"squizlabs/php_codesniffer": "~2.0"

0 commit comments

Comments
 (0)