Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add laravel 10 to composer and gh actions test workflow, and php 8.2
  • Loading branch information
joshhanley committed Feb 14, 2023
commit 0583540688791a7b0bbf8314eeb53eaaf656e5e9
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4, 8.0, 8.1]
laravel: [8.*, 9.*]
php: [7.4, 8.0, 8.1, 8.2]
laravel: [8.*, 9.*, 10.*]
exclude:
- php: 7.4
laravel: 9.*
- php: 7.4
laravel: 9.*
- php: 8.0
laravel: 10.*

name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
],
"require": {
"php": "^7.4|^8.0",
"laravel/framework": "^8.0|^9.0|dev-master",
"laravel/framework": "^8.0|^9.0|^10.0|dev-master",
"livewire/livewire": "^2.3.6|dev-master"
},
"autoload": {
Expand Down