Skip to content

Commit 9b43d6a

Browse files
committed
fix: Support multiple Orchestra Testbench versions for Laravel 10-12 compatibility
The package now accepts orchestra/testbench ^8.0, ^9.0, or ^10.0 to ensure compatibility with different Laravel versions: - Laravel 10.* requires testbench ^8.0 - Laravel 11.* requires testbench ^9.0 - Laravel 12.* requires testbench ^10.0 This fixes CI test failures across all PHP 8.2/8.3 and Laravel 10/11 matrix combinations with both prefer-lowest and prefer-stable dependency strategies. Tested locally with: - prefer-stable: All 243 tests passing - prefer-lowest: All 243 tests passing (Laravel 10.0.0 + Testbench 8.0.0)
1 parent f8b0268 commit 9b43d6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
},
2222
"require-dev": {
2323
"phpunit/phpunit": "^10.5 || ^11.0",
24-
"orchestra/testbench": "^10.6.0",
24+
"orchestra/testbench": "^8.0 || ^9.0 || ^10.0",
2525
"squizlabs/php_codesniffer": "^3.6",
2626
"mockery/mockery": "^1.6"
2727
},

0 commit comments

Comments
 (0)