Skip to content

Commit 79e8596

Browse files
committed
laravel 5.6 support
1 parent 01ed708 commit 79e8596

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ php:
1313
- 7.2
1414

1515
env:
16-
- LARAVEL_VERSION=5.5.*
16+
matrix:
17+
- COMPOSER_FLAGS="--prefer-lowest"
18+
- COMPOSER_FLAGS=""
1719

1820
before_install:
1921
- travis_retry composer self-update --stable -n
2022
- composer validate --no-check-all --strict
21-
- composer require "laravel/framework:${LARAVEL_VERSION}" --no-update -n
2223

2324
install:
24-
- travis_retry composer install --no-suggest --prefer-dist -n -o
25+
- travis_retry composer update --prefer-source $COMPOSER_FLAGS
2526
- composer require satooshi/php-coveralls --dev
2627

2728
script:

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
},
2828
"require": {
2929
"php": ">=7.0",
30-
"illuminate/support": "~5.5.0"
30+
"illuminate/support": "~5.5.0|~5.6.0"
3131
},
3232
"require-dev": {
33-
"orchestra/testbench": "~3.5.0",
33+
"orchestra/testbench": "~3.5.0|~3.6.0",
3434
"phpmd/phpmd": "^2.6",
35-
"phpunit/phpunit": "~6.0",
35+
"phpunit/phpunit": "~6.0|~7.0",
3636
"sebastian/phpcpd": "^3.0",
3737
"squizlabs/php_codesniffer": "^2.7"
3838
},

0 commit comments

Comments
 (0)