Skip to content

Commit 3699704

Browse files
authored
feat: support laravel 12 (#139)
1 parent 367228c commit 3699704

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/php.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ jobs:
1111
strategy:
1212
max-parallel: 15
1313
matrix:
14-
laravel-version: [^10.0, ^11.0]
14+
laravel-version: [^10.0, ^11.0, ^12.0]
1515
php-versions: ['8.1', '8.2', '8.3']
1616
exclude:
1717
- laravel-version: '^10.0'
1818
php-versions: '8.1'
1919
- laravel-version: '^11.0'
2020
php-versions: '8.1'
21+
- laravel-version: '^12.0'
22+
php-versions: '8.2'
2123

2224
name: PHP ${{ matrix.php-versions }} on ${{ matrix.laravel-version }}
2325

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1",
20-
"illuminate/support": "^10.0 | ^11.0"
19+
"php": "^8.2",
20+
"illuminate/support": "^10.0 | ^11.0 | ^12.0"
2121
},
2222
"require-dev": {
2323
"orchestra/testbench": "^8.0 | ^9.0",

0 commit comments

Comments
 (0)