Skip to content

Commit

Permalink
chore(deps): Add laravel 7 support (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
pulkitjalan authored Mar 4, 2020
1 parent e1e53b7 commit cfa2a82
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,22 @@ matrix:
env: LARAVEL='6.*' COMPOSER_FLAGS='--prefer-lowest'
- php: 7.4
env: LARAVEL='6.*' COMPOSER_FLAGS='--prefer-stable'
- php: 7.2
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-lowest'
- php: 7.2
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-stable'
- php: 7.3
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-lowest'
- php: 7.3
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-stable'
- php: 7.4
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-lowest'
- php: 7.4
env: LARAVEL='7.*' COMPOSER_FLAGS='--prefer-stable'

before_install:
- travis_retry composer self-update
- travis_retry composer require --no-update --no-interaction "illuminate/support:${LARAVEL}"
- travis_retry composer require "illuminate/support:${LARAVEL}" --no-update --no-interaction

install:
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-dist --no-interaction --no-suggest
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
],
"require": {
"php": "^7.2",
"illuminate/support": "~5.8.0|^6.0",
"illuminate/console": "~5.8.0|^6.0",
"illuminate/support": "^5.8|^6|^7",
"illuminate/console": "^5.8|^6|^7",
"guzzlehttp/guzzle": "^6.5",
"geoip2/geoip2": "^2.10"
},
Expand Down

0 comments on commit cfa2a82

Please sign in to comment.