Skip to content

Commit 082f07e

Browse files
author
Jason van Altena
committed
Add support for Laravel 12 and Testbench 10
Updated GitHub Actions workflow and composer.json to include Laravel 12 and Testbench 10 compatibility. This ensures the project is tested and works with the latest framework versions.
1 parent 84513ba commit 082f07e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ 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']
2020
phpunit: [10]
2121
exclude:

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
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",
19+
"orchestra/testbench": "^8 || ^9 || ^10",
2020
"phpunit/phpunit": "^10.0"
2121
},
2222
"extra": {

0 commit comments

Comments
 (0)