Skip to content

Commit

Permalink
Merge pull request #17 from laravelcm/update-github-actions
Browse files Browse the repository at this point in the history
feat: Remove laravel 9 support and update github actions test
  • Loading branch information
mckenziearts authored Jul 24, 2024
2 parents 09c167b + 3c555d4 commit 0fb781a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [9.*, 10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
php: [8.3, 8.2, 8.1]
laravel: [11.*, 10.*]
dependency-version: [prefer-stable]
include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
exclude:
- laravel: 11.*
php: 8.1
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.52|^10.0|^11.0",
"illuminate/container": "^9.52|^10.0|^11.0",
"illuminate/database": "^9.52|^10.0|^11.0",
"illuminate/support": "^9.52|^10.0|^11.0",
"illuminate/console": "^10.0|^11.0",
"illuminate/container": "^10.0|^11.0",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"spatie/eloquent-sortable": "^4.0.0",
"spatie/laravel-package-tools": "^1.16",
"spatie/laravel-sluggable": "^3.4.2",
Expand All @@ -44,7 +44,7 @@
"require-dev": {
"laravel/pint": "^1.13",
"larastan/larastan": "^2.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.18"
},
"autoload": {
Expand Down

0 comments on commit 0fb781a

Please sign in to comment.