Skip to content

Commit be8e8f9

Browse files
authored
[Upgrade] Allow installing with Laravel 7 (#19)
* [Upgrade] Allow installing with Laravel 7 * Change version used in Travis CI
1 parent 1b3ed3d commit be8e8f9

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: php
33
matrix:
44
include:
55
- php: 7.2
6-
env: ILLUMINATE_VERSION=6.0.*
6+
env: ILLUMINATE_VERSION=7.0.*
77

88
before_install:
99
- composer require "illuminate/cache:${ILLUMINATE_VERSION}" --no-update

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@
1111
],
1212
"minimum-stability": "stable",
1313
"require": {
14-
"php": ">=7.2",
15-
"illuminate/cache": "^6.0",
16-
"illuminate/config": "^6.0",
17-
"illuminate/console": "^6.0",
18-
"illuminate/database": "^6.0",
19-
"illuminate/support": "^6.0",
14+
"php": ">=7.2.5",
15+
"illuminate/cache": "^7",
16+
"illuminate/config": "^7",
17+
"illuminate/console": "^7",
18+
"illuminate/database": "^7",
19+
"illuminate/support": "^7",
2020
"opensoft/rollout": "2.2.*"
2121
},
2222
"require-dev": {
2323
"friendsofphp/php-cs-fixer": "^2.1",
24-
"illuminate/container": "^6.0",
24+
"illuminate/container": "^7",
2525
"mockery/mockery": "^1.2",
26-
"orchestra/testbench": "^4.0",
26+
"orchestra/testbench": "^5.0",
2727
"php-coveralls/php-coveralls": "^2.1",
2828
"phpunit/phpunit": "^8.0",
2929
"squizlabs/php_codesniffer": "^2.8"

0 commit comments

Comments
 (0)