We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52cd5b6 commit 0b0bf59Copy full SHA for 0b0bf59
bin/simple-phpunit.php
@@ -98,10 +98,8 @@
98
};
99
100
if (\PHP_VERSION_ID >= 80000) {
101
- // PHP 8 requires PHPUnit 9.3+, PHP 8.1 requires PHPUnit 9.5+
102
- $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.5') ?: '9.5';
+ $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.6') ?: '9.6';
103
} elseif (\PHP_VERSION_ID >= 70200) {
104
- // PHPUnit 8 requires PHP 7.2+
105
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '8.5') ?: '8.5';
106
} else {
107
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '7.5') ?: '7.5';
0 commit comments