Skip to content

Commit

Permalink
Merge pull request #87 from tvbeek/main
Browse files Browse the repository at this point in the history
Allow Laravel 9
  • Loading branch information
freekmurze authored Feb 8, 2022
2 parents 94a3d96 + 49ea06f commit 1b4a07c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.0, 7.4]
laravel: [8.*]
laravel: [8.*, 9.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 9.*
php: 7.4
include:
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
testbench: ^7.0

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

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
],
"require": {
"php": "^7.4|^8.0",
"illuminate/database": "^8.0",
"illuminate/view": "^8.0",
"illuminate/database": "^8.0|^9.0",
"illuminate/view": "^8.0|^9.0",
"livewire/livewire": "^2.0",
"spatie/sun": "^1.1.1"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"orchestra/testbench": "^6.0|^7.0",
"phpunit/phpunit": "^9.3",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
Expand Down

0 comments on commit 1b4a07c

Please sign in to comment.