Skip to content

Commit ec98930

Browse files
Supports Laravel 12 (#401)
* Allow Testbench 10 & PHPUnit 11 in composer.json * Add Laravel 12 to testing matrix
1 parent d333ad2 commit ec98930

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ jobs:
1313
strategy:
1414
matrix:
1515
php: [8.1, 8.2, 8.3, 8.4]
16-
laravel: [10.*, 11.*]
16+
laravel: [10.*, 11.*, 12.*]
1717
stability: [prefer-lowest, prefer-stable]
1818
exclude:
1919
- php: 8.1
2020
laravel: 11.*
21+
- php: 8.1
22+
laravel: 12.*
2123
- php: 8.4
2224
laravel: 10.*
2325

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"require-dev": {
3131
"doctrine/dbal": "^3.8",
3232
"laravel/pint": "^1.0",
33-
"orchestra/testbench": "^8.28 || ^9.6.1",
34-
"phpunit/phpunit": "^10.5.35"
33+
"orchestra/testbench": "^8.28 || ^9.6.1 || ^10.0",
34+
"phpunit/phpunit": "^10.5.35 || ^11.0"
3535
},
3636
"scripts": {
3737
"test": "phpunit"

0 commit comments

Comments
 (0)