Skip to content

Commit a44afe6

Browse files
authored
Merge pull request #271 from mokhosh/add-laravel-11-support
Add laravel 11 support
2 parents 18bbcb0 + eccac0f commit a44afe6

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,25 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest]
12-
php: [8.2, 8.1 8.0]
13-
laravel: [10.*, 9.*, 8.*]
12+
php: [8.3, 8.2, 8.1, 8.0]
13+
laravel: [11.*, 10.*, 9.*, 8.*]
1414
stability: [prefer-stable]
1515
include:
16+
- laravel: 11.*
17+
testbench: 9.*
1618
- laravel: 10.*
1719
testbench: 8.*
1820
- laravel: 9.*
1921
testbench: 7.*
2022
- laravel: 8.*
2123
testbench: 6.23
2224
exclude:
23-
- laravel: 10.*
24-
php: 8.0
25+
- laravel: 11.*
26+
php: 8.1
27+
- laravel: 11.*
28+
php: 8.0
29+
- laravel: 10.*
30+
php: 8.0
2531

2632
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2733

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
"homepage": "https://github.com/spatie/laravel-sluggable",
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/database": "^8.0|^9.0|^10.0",
21-
"illuminate/support": "^8.0|^9.0|^10.0"
20+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
21+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0"
2222
},
2323
"require-dev": {
24-
"orchestra/testbench": "^6.23|^7.0|^8.0",
25-
"pestphp/pest": "^1.20",
24+
"orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
25+
"pestphp/pest": "^1.20|^2.0",
2626
"spatie/laravel-translatable": "^5.0|^6.0"
2727
},
2828
"minimum-stability": "dev",

0 commit comments

Comments
 (0)