Skip to content

Commit

Permalink
Merge pull request #15 from webparking/feature/add-laravel-7-support
Browse files Browse the repository at this point in the history
Added support for Laravel 7
  • Loading branch information
JeroenVanOort committed Apr 7, 2020
2 parents 8ede716 + c9915e9 commit e1f4a88
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ matrix:
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'
- php: 7.2
env: LARAVEL='5.8.*' TESTBENCH='3.8.*'
- php: 7.2
env: LARAVEL='7.*' TESTBENCH='5.*'
- php: 7.3
env: LARAVEL='5.5.*' TESTBENCH='3.5.*'
- php: 7.3
Expand All @@ -33,6 +35,10 @@ matrix:
env: LARAVEL='5.7.*' TESTBENCH='3.7.*'
- php: 7.3
env: LARAVEL='5.8.*' TESTBENCH='3.8.*'
- php: 7.3
env: LARAVEL='7.*' TESTBENCH='5.*'
- php: 7.4
env: LARAVEL='7.*' TESTBENCH='5.*'

before_install:
- travis_retry composer self-update
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"php": ">=7.1.0",
"ext-json": "*",
"ext-posix": "*",
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0",
"illuminate/console": "~5.5.0|~5.6.0|~5.7.0|~5.8.0"
"illuminate/support": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~7.0",
"illuminate/console": "~5.5.0|~5.6.0|~5.7.0|~5.8.0|~7.0"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -56,9 +56,9 @@
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12",
"phpunit/phpunit": "^6|^7.0",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"orchestra/database": "~3.5.0|~3.6.0|~3.7.0|~3.8.0",
"phpunit/phpunit": "^6|^7.0|^8.0|^9.0",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0|~3.8.0|~5.0",
"orchestra/database": "~3.5.0|~3.6.0|~3.7.0|~3.8.0|~5.0",
"phpmd/phpmd": "^2.6",
"phpstan/phpstan": "^0.12.18"
},
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e1f4a88

Please sign in to comment.