Skip to content

Commit 4bc50b0

Browse files
authored
Merge pull request #64 from laravel-shift/l13-compatibility
Laravel 13.x Compatibility
2 parents 2b18b27 + cb4c3b7 commit 4bc50b0

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/run-tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- master
77
pull_request:
88
branches:
9-
- "*"
9+
- '*'
1010
schedule:
1111
- cron: '0 0 * * *'
1212

@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
php: [8.5, 8.4, 8.3, 8.2, 8.1, 8.0]
25-
laravel: ['9.*', '10.*', '11.*', '12.*']
25+
laravel: ['9.*', '10.*', '11.*', '12.*', '13.*']
2626
dependency-version: [prefer-lowest, prefer-stable]
2727
exclude:
2828
- php: 8.0
@@ -35,6 +35,12 @@ jobs:
3535
php: 8.1
3636
- laravel: 12.*
3737
php: 8.0
38+
- laravel: 13.*
39+
php: 8.2
40+
- laravel: 13.*
41+
php: 8.1
42+
- laravel: 13.*
43+
php: 8.0
3844

3945
steps:
4046
- name: Checkout code

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"require": {
1818
"php": "^8",
19-
"illuminate/support": "^9|^10|^11.0|^12.0",
19+
"illuminate/support": "^9|^10|^11.0|^12.0|^13.0",
2020
"symfony/form": "^6|^7.0",
2121
"symfony/validator": "^6|^7.0",
2222
"symfony/twig-bridge": "^6|^7.0",
@@ -43,8 +43,8 @@
4343
}
4444
},
4545
"require-dev": {
46-
"squizlabs/php_codesniffer": "^2.3|^3.9",
47-
"orchestra/testbench": "^7|^8|^9.0|^10.0"
46+
"squizlabs/php_codesniffer": "^2.3|^3.9|^4.0",
47+
"orchestra/testbench": "^7|^8|^9.0|^10.0|^11.0"
4848
},
4949
"scripts": {
5050
"test": "phpunit",

0 commit comments

Comments
 (0)