Skip to content

Commit 304db39

Browse files
authored
Merge pull request #58 from laravel-shift/l12-compatibility
Laravel 12.x Compatibility
2 parents 52e5b02 + c7259c1 commit 304db39

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 6 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.4, 8.3, 8.2, 8.1, 8.0]
25-
laravel: ['9.*', '10.*', '11.*']
25+
laravel: ['9.*', '10.*', '11.*', '12.*']
2626
dependency-version: [prefer-lowest, prefer-stable]
2727
exclude:
2828
- php: 8.0
@@ -31,6 +31,10 @@ jobs:
3131
php: 8.1
3232
- laravel: 11.*
3333
php: 8.0
34+
- laravel: 12.*
35+
php: 8.1
36+
- laravel: 12.*
37+
php: 8.0
3438

3539
steps:
3640
- name: Checkout code

composer.json

Lines changed: 2 additions & 2 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",
19+
"illuminate/support": "^9|^10|^11.0|^12.0",
2020
"symfony/form": "^6|^7.0",
2121
"symfony/validator": "^6|^7.0",
2222
"symfony/twig-bridge": "^6|^7.0",
@@ -44,7 +44,7 @@
4444
},
4545
"require-dev": {
4646
"squizlabs/php_codesniffer": "^2.3|^3.9",
47-
"orchestra/testbench": "^7|^8|^9.0"
47+
"orchestra/testbench": "^7|^8|^9.0|^10.0"
4848
},
4949
"scripts": {
5050
"test": "phpunit",

0 commit comments

Comments
 (0)