Skip to content

Commit

Permalink
Merge pull request #111 from laravel-shift/l10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10.x Compatibility
  • Loading branch information
freekmurze authored Feb 2, 2023
2 parents e587aeb + 9a2cb76 commit 6d3eab8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,18 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.0, 7.4]
laravel: [8.*, 9.*]
laravel: [8.*, 9.*, 10.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 10.*
php: 8.0
- laravel: 10.*
php: 7.4
- laravel: 9.*
php: 7.4
include:
- laravel: 10.*
testbench: ^8.0
- laravel: 8.*
testbench: ^6.23
- laravel: 9.*
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|^9.0",
"illuminate/view": "^8.0|^9.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/view": "^8.0|^9.0|^10.0",
"livewire/livewire": "^2.0",
"spatie/sun": "^1.1.1"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"orchestra/testbench": "^6.0|^7.0|^8.0",
"phpunit/phpunit": "^9.3",
"spatie/phpunit-snapshot-assertions": "^4.2"
},
Expand Down

0 comments on commit 6d3eab8

Please sign in to comment.