Skip to content

Commit 0ad7ffb

Browse files
authored
Add support for Laravel 12 (#737)
1 parent 84513ba commit 0ad7ffb

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ jobs:
1515
max-parallel: 6 # 12
1616
fail-fast: false
1717
matrix:
18-
laravel: [10, 11]
18+
laravel: [10, 11, 12]
1919
php: ['8.2', '8.3', '8.4']
20-
phpunit: [10]
20+
phpunit: [10, 11]
2121
exclude:
2222
- {laravel: 10, php: '8.4'}
23+
- {laravel: 10, phpunit: 11}
24+
- {laravel: 12, phpunit: 10}
2325
steps:
2426
- name: Checkout repository
2527
uses: actions/checkout@v3

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"require": {
1313
"php": "^8.0",
1414
"rdx/laravelcollective-html": "^6",
15-
"illuminate/database": "^10 || ^11",
16-
"illuminate/validation": "^10 || ^11"
15+
"illuminate/database": "^10 || ^11 || ^12",
16+
"illuminate/validation": "^10 || ^11 || ^12"
1717
},
1818
"require-dev": {
19-
"orchestra/testbench": "^8 || ^9",
20-
"phpunit/phpunit": "^10.0"
19+
"orchestra/testbench": "^8 || ^9 || ^10",
20+
"phpunit/phpunit": "^10.0 || ^11.0"
2121
},
2222
"extra": {
2323
"branch-alias": {

0 commit comments

Comments
 (0)