Skip to content

Commit 8f97b3c

Browse files
committed
Added support for laravel 6.0 .
1 parent 6ada97a commit 8f97b3c

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.travis.yml

100644100755
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ matrix:
5454
- php: 7.3
5555
env: LARAVEL=5.8.* PHPUNIT=~8.0
5656

57+
# Laravel 6.0
58+
- php: 7.2
59+
env: LARAVEL=6.0.* PHPUNIT=~8.0
60+
- php: 7.3
61+
env: LARAVEL=6.0.* PHPUNIT=~8.0
62+
5763
before_install:
5864
- travis_retry composer self-update
5965
- travis_retry composer require laravel/framework:$LARAVEL --no-update --no-interaction

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
],
1111
"license": "Apache-2.0",
1212
"require": {
13-
"laravel/framework": "~5.1",
13+
"laravel/framework": "~5.1|~6.0",
1414
"casbin/casbin": "~1.0"
1515
},
1616
"require-dev": {
1717
"phpunit/phpunit": "~5.7|~6.0|~7.0|~8.0",
1818
"php-coveralls/php-coveralls": "^2.1",
1919
"mockery/mockery": "^1.0",
20-
"laravel/laravel": "~5.1"
20+
"laravel/laravel": "~5.1|~6.0"
2121
},
2222
"autoload": {
2323
"psr-4": {

0 commit comments

Comments
 (0)