Skip to content

Commit 0106792

Browse files
committed
laravel 5.6 support
1 parent 88d2efd commit 0106792

2 files changed

Lines changed: 8 additions & 7 deletions

File tree

.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
- travis_retry composer require --dev satooshi/php-coveralls
2627

2728
script:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
],
2020
"require": {
2121
"php": ">=5.6.4",
22-
"illuminate/filesystem": "~5.5.0",
23-
"illuminate/support": "~5.5.0"
22+
"illuminate/filesystem": "~5.5.0|~5.6.0",
23+
"illuminate/support": "~5.5.0|~5.6.0"
2424
},
2525
"require-dev": {
2626
"mockery/mockery": "^0.9.7",
27-
"orchestra/testbench": "~3.5.0",
27+
"orchestra/testbench": "~3.5.0|~3.6.0",
2828
"phpmd/phpmd": "^2.5",
29-
"phpunit/phpunit": "~6.0",
29+
"phpunit/phpunit": "~6.0|~7.0",
3030
"sebastian/phpcpd": "^3.0",
3131
"squizlabs/php_codesniffer": "^2.7"
3232
},

0 commit comments

Comments
 (0)