Skip to content

Commit

Permalink
Laravel 7 support (#12)
Browse files Browse the repository at this point in the history
* Update .travis.yml

* Update composer.json
  • Loading branch information
Propaganistas authored Mar 4, 2020
1 parent e57b9ac commit 76d8183
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ php:
- 7.1
- 7.2
- 7.3
- 7.4

cache:
directories:
Expand All @@ -12,16 +13,18 @@ cache:
matrix:
fast_finish: true
include:
- php: 7.3
- php: 7.4
env: ILLUMINATE_VERSION=5.5.* TESTBENCH_VERSION=3.5.* PHPUNIT_VERSION=6.*
- php: 7.3
- php: 7.4
env: ILLUMINATE_VERSION=5.6.* TESTBENCH_VERSION=3.6.* PHPUNIT_VERSION=7.*
- php: 7.3
- php: 7.4
env: ILLUMINATE_VERSION=5.7.* TESTBENCH_VERSION=3.7.* PHPUNIT_VERSION=7.*
- php: 7.3
- php: 7.4
env: ILLUMINATE_VERSION=5.8.* TESTBENCH_VERSION=3.8.* PHPUNIT_VERSION=8.*
- php: 7.3
- php: 7.4
env: ILLUMINATE_VERSION=6.* TESTBENCH_VERSION=4.* PHPUNIT_VERSION=8.*
- php: 7.4
env: ILLUMINATE_VERSION=7.* TESTBENCH_VERSION=5.* PHPUNIT_VERSION=9.*

sudo: false

Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
],
"require": {
"php": ">=7.1",
"illuminate/cache": "^5.5|^6.0",
"illuminate/config": "^5.5|^6.0",
"illuminate/contracts": "^5.5|^6.0",
"illuminate/support": "^5.5|^6.0",
"illuminate/console": "^5.5|^6.0",
"illuminate/validation": "^5.5|^6.0"
"illuminate/cache": "^5.5|^6.0|^7.0",
"illuminate/config": "^5.5|^6.0|^7.0",
"illuminate/contracts": "^5.5|^6.0|^7.0",
"illuminate/support": "^5.5|^6.0|^7.0",
"illuminate/console": "^5.5|^6.0|^7.0",
"illuminate/validation": "^5.5|^6.0|^7.0"
},
"require-dev": {
"mockery/mockery": "*",
Expand Down

0 comments on commit 76d8183

Please sign in to comment.