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.
2 parents 8c7b1c4 + ab9e20a commit d3ccbc9Copy full SHA for d3ccbc9
bin/simple-phpunit.php
@@ -47,9 +47,12 @@
47
return $default;
48
};
49
50
-if (PHP_VERSION_ID >= 70100) {
+if (PHP_VERSION_ID >= 70200) {
51
+ // PHPUnit 8 requires PHP 7.2+
52
+ $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '8.2');
53
+} elseif (PHP_VERSION_ID >= 70100) {
54
// PHPUnit 7 requires PHP 7.1+
- $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '7.4');
55
+ $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '7.5');
56
} elseif (PHP_VERSION_ID >= 70000) {
57
// PHPUnit 6 requires PHP 7.0+
58
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '6.5');
0 commit comments