Skip to content

Commit 3fe39a4

Browse files
committed
fix: use ^11|^12 for phpunit to support PHP 8.2
PHPUnit 12 requires PHP >= 8.3, but packages support PHP >= 8.2. Using ^11|^12 allows composer install on both PHP 8.2 and 8.3+.
1 parent 01e6f98 commit 3fe39a4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
},
3838
"require-dev": {
3939
"ext-curl": "*",
40-
"phpunit/phpunit": "^12"
40+
"phpunit/phpunit": "^11|^12"
4141
},
4242
"scripts": {
4343
"tests": "phpunit --testsuite=unit",

0 commit comments

Comments
 (0)