Skip to content

Commit

Permalink
Merge pull request #91 from Magiczne/feature/laravel-9
Browse files Browse the repository at this point in the history
Support for Laravel 9
  • Loading branch information
freekmurze authored Feb 23, 2022
2 parents 5f75f86 + 0646437 commit 3bf627a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,22 @@ jobs:
matrix:
os: [ubuntu-latest]
php: [8.0, 7.4, 7.3]
laravel: [6.*, 7.*, 8.*]
laravel: [6.*, 7.*, 8.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*
- laravel: 7.*
testbench: 5.*
- laravel: 6.*
testbench: 4.*
exclude:
- laravel: 9.*
php: 7.4
- laravel: 9.*
php: 7.3

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@
],
"require": {
"php": "^7.3|^8.0",
"illuminate/support": "^6.18|^7.0|^8.0",
"illuminate/support": "^6.18|^7.0|^8.0|^9.0",
"spatie/server-side-rendering": "^0.3"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"orchestra/testbench": "^4.0|^5.0|^6.0"
"orchestra/testbench": "^4.0|^5.0|^6.0|^7.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 3bf627a

Please sign in to comment.