Skip to content

Commit cfa2a82

Browse files
authored
chore(deps): Add laravel 7 support (#34)
1 parent e1e53b7 commit cfa2a82

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.travis.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,22 @@ matrix:
3131
env: LARAVEL='6.*' COMPOSER_FLAGS='--prefer-lowest'
3232
- php: 7.4
3333
env: LARAVEL='6.*' COMPOSER_FLAGS='--prefer-stable'
34+
- php: 7.2
35+
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-lowest'
36+
- php: 7.2
37+
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-stable'
38+
- php: 7.3
39+
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-lowest'
40+
- php: 7.3
41+
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-stable'
42+
- php: 7.4
43+
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-lowest'
44+
- php: 7.4
45+
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-stable'
3446

3547
before_install:
3648
- travis_retry composer self-update
37-
- travis_retry composer require --no-update --no-interaction "illuminate/support:${LARAVEL}"
49+
- travis_retry composer require "illuminate/support:${LARAVEL}" --no-update --no-interaction
3850

3951
install:
4052
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction --no-suggest

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
],
1818
"require": {
1919
"php": "^7.2",
20-
"illuminate/support": "~5.8.0|^6.0",
21-
"illuminate/console": "~5.8.0|^6.0",
20+
"illuminate/support": "^5.8|^6|^7",
21+
"illuminate/console": "^5.8|^6|^7",
2222
"guzzlehttp/guzzle": "^6.5",
2323
"geoip2/geoip2": "^2.10"
2424
},

0 commit comments

Comments
 (0)