We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 063ce8a + d53f4e6 commit 6174492Copy full SHA for 6174492
bin/simple-phpunit.php
@@ -95,7 +95,7 @@
95
96
if (\PHP_VERSION_ID >= 80000) {
97
// PHP 8 requires PHPUnit 9.3+
98
- $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.3');
+ $PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.4');
99
} elseif (\PHP_VERSION_ID >= 70200) {
100
// PHPUnit 8 requires PHP 7.2+
101
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '8.3');
@@ -197,7 +197,7 @@
197
'requires' => ['php' => '*'],
198
];
199
200
- $stableVersions = array_filter($info['versions'], function($v) {
+ $stableVersions = array_filter($info['versions'], function ($v) {
201
return !preg_match('/-dev$|^dev-/', $v);
202
});
203
0 commit comments