Skip to content

Commit 0fb781a

Browse files
authored
Merge pull request #17 from laravelcm/update-github-actions
feat: Remove laravel 9 support and update github actions test
2 parents 09c167b + 3c555d4 commit 0fb781a

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

.github/workflows/tests.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.1, 8.2, 8.3]
12-
laravel: [9.*, 10.*, 11.*]
13-
dependency-version: [prefer-lowest, prefer-stable]
11+
php: [8.3, 8.2, 8.1]
12+
laravel: [11.*, 10.*]
13+
dependency-version: [prefer-stable]
1414
include:
1515
- laravel: 11.*
1616
testbench: 9.*
1717
- laravel: 10.*
1818
testbench: 8.*
19-
- laravel: 9.*
20-
testbench: 7.*
2119
exclude:
2220
- laravel: 11.*
2321
php: 8.1

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
],
3333
"require": {
3434
"php": "^8.1",
35-
"illuminate/console": "^9.52|^10.0|^11.0",
36-
"illuminate/container": "^9.52|^10.0|^11.0",
37-
"illuminate/database": "^9.52|^10.0|^11.0",
38-
"illuminate/support": "^9.52|^10.0|^11.0",
35+
"illuminate/console": "^10.0|^11.0",
36+
"illuminate/container": "^10.0|^11.0",
37+
"illuminate/database": "^10.0|^11.0",
38+
"illuminate/support": "^10.0|^11.0",
3939
"spatie/eloquent-sortable": "^4.0.0",
4040
"spatie/laravel-package-tools": "^1.16",
4141
"spatie/laravel-sluggable": "^3.4.2",
@@ -44,7 +44,7 @@
4444
"require-dev": {
4545
"laravel/pint": "^1.13",
4646
"larastan/larastan": "^2.0",
47-
"orchestra/testbench": "^7.0|^8.0|^9.0",
47+
"orchestra/testbench": "^8.0|^9.0",
4848
"pestphp/pest": "^2.18"
4949
},
5050
"autoload": {

0 commit comments

Comments
 (0)