Skip to content

Commit

Permalink
Support Laravel 7
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmcdonald-uk committed Mar 3, 2020
1 parent 786f483 commit ae6a679
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
4 changes: 0 additions & 4 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
preset: laravel
enabled:
- alpha_ordered_imports
disabled:
- length_ordered_imports
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,23 @@ matrix:
- php: 7.2
env: LARAVEL='5.8.*' PHPUNIT='^7.0' TESTBENCH='3.8.*'
- php: 7.2
env: LARAVEL='6.*' PHPUNIT='^8.3' TESTBENCH='4.*'
env: LARAVEL='6.*' PHPUNIT='^8.4' TESTBENCH='4.*'
- php: 7.2
env: LARAVEL='7.*' PHPUNIT='^8.4' TESTBENCH='5.*'
- php: 7.3
env: LARAVEL='5.7.*' PHPUNIT='^7.0' TESTBENCH='3.7.*'
- php: 7.3
env: LARAVEL='5.8.*' PHPUNIT='^7.0' TESTBENCH='3.8.*'
- php: 7.3
env: LARAVEL='6.*' PHPUNIT='^8.3' TESTBENCH='4.*'
env: LARAVEL='6.*' PHPUNIT='^8.4' TESTBENCH='4.*'
- php: 7.3
env: LARAVEL='7.*' PHPUNIT='^8.4' TESTBENCH='5.*'
- php: 7.4
env: LARAVEL='5.8.*' PHPUNIT='^7.0' TESTBENCH='3.8.*'
- php: 7.4
env: LARAVEL='6.*' PHPUNIT='^8.4' TESTBENCH='4.*'
- php: 7.4
env: LARAVEL='7.*' PHPUNIT='^8.4' TESTBENCH='5.*'

before_install:
- travis_retry composer self-update
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
],
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.1|^6.0"
"illuminate/support": "^5.2|^6.0|^7.0"
},
"require-dev": {
"illuminate/database": "^5.1|^6.0",
"orchestra/testbench": "^3.1|^4.0",
"phpunit/phpunit": "^5.0|^6.0|^7.0|^8.3"
"illuminate/database": "^5.2|^6.0|^7.0",
"orchestra/testbench": "^3.1|^4.0|^5.0",
"phpunit/phpunit": "^5.0|^6.0|^7.0|^8.4|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit ae6a679

Please sign in to comment.