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 254590a commit d3bc23eCopy full SHA for d3bc23e
bin/simple-phpunit.php
@@ -94,11 +94,11 @@
94
};
95
96
if (\PHP_VERSION_ID >= 80000) {
97
- // PHP 8 requires PHPUnit 9.3+
98
- $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.4') ?: '9.4';
+ // PHP 8 requires PHPUnit 9.3+, PHP 8.1 requires PHPUnit 9.5+
+ $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.5') ?: '9.5';
99
} elseif (\PHP_VERSION_ID >= 70200) {
100
// PHPUnit 8 requires PHP 7.2+
101
- $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '8.3') ?: '8.3';
+ $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '8.5') ?: '8.5';
102
} elseif (\PHP_VERSION_ID >= 70100) {
103
// PHPUnit 7 requires PHP 7.1+
104
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '7.5') ?: '7.5';
0 commit comments