Skip to content

Commit 67a7717

Browse files
authored
Merge pull request #207 from laravel-shift/l13-compatibility
Laravel 13.x Compatibility
2 parents cf23ef8 + 6595730 commit 67a7717

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
php: [8.4, 8.3, 8.2]
14-
laravel: ['10.*', '11.*', '12.*']
13+
php: [8.5, 8.4, 8.3, 8.2]
14+
laravel: ['11.*', '12.*', '13.*']
1515
dependency-version: [prefer-lowest, prefer-stable]
16+
exclude:
17+
- laravel: 13.*
18+
php: 8.2
1619

1720
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
1821

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
],
2828
"require": {
2929
"php": "^8.2",
30-
"illuminate/support": "^10.0|^11.0|^12.0",
31-
"illuminate/view": "^10.0|^11.0|^12.0",
32-
"illuminate/cookie": "^10.0|^11.0|^12.0",
30+
"illuminate/support": "^11.0|^12.0|^13.0",
31+
"illuminate/view": "^11.0|^12.0|^13.0",
32+
"illuminate/cookie": "^11.0|^12.0|^13.0",
3333
"spatie/laravel-package-tools": "^1.9"
3434
},
3535
"require-dev": {
3636
"fakerphp/faker": "^1.9",
37-
"orchestra/testbench": "^8.0|^9.0|^10.0",
38-
"pestphp/pest": "^2.34|^3.7"
37+
"orchestra/testbench": "^9.0|^10.0|^11.0",
38+
"pestphp/pest": "^3.7|^4.0"
3939
},
4040
"autoload": {
4141
"psr-4": {

0 commit comments

Comments
 (0)