Skip to content

Commit

Permalink
[Upgrade] Allow installing with Laravel 7 (#19)
Browse files Browse the repository at this point in the history
* [Upgrade] Allow installing with Laravel 7

* Change version used in  Travis CI
  • Loading branch information
bramdevries authored Apr 17, 2020
1 parent 1b3ed3d commit be8e8f9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: php
matrix:
include:
- php: 7.2
env: ILLUMINATE_VERSION=6.0.*
env: ILLUMINATE_VERSION=7.0.*

before_install:
- composer require "illuminate/cache:${ILLUMINATE_VERSION}" --no-update
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"illuminate/cache": "^6.0",
"illuminate/config": "^6.0",
"illuminate/console": "^6.0",
"illuminate/database": "^6.0",
"illuminate/support": "^6.0",
"php": ">=7.2.5",
"illuminate/cache": "^7",
"illuminate/config": "^7",
"illuminate/console": "^7",
"illuminate/database": "^7",
"illuminate/support": "^7",
"opensoft/rollout": "2.2.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.1",
"illuminate/container": "^6.0",
"illuminate/container": "^7",
"mockery/mockery": "^1.2",
"orchestra/testbench": "^4.0",
"orchestra/testbench": "^5.0",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^2.8"
Expand Down

0 comments on commit be8e8f9

Please sign in to comment.