We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e283912 commit d53f4e6Copy full SHA for d53f4e6
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');
@@ -196,7 +196,7 @@
196
'requires' => ['php' => '*'],
197
];
198
199
- $stableVersions = array_filter($info['versions'], function($v) {
+ $stableVersions = array_filter($info['versions'], function ($v) {
200
return !preg_match('/-dev$|^dev-/', $v);
201
});
202
0 commit comments