Skip to content

Commit 6174492

Browse files
Merge branch '4.4' into 5.1
* 4.4: Disable platform checks Put branch-version in the source for CI Bump default PHPUnit version for PHP 8 to 9.4.
2 parents 063ce8a + d53f4e6 commit 6174492

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: bin/simple-phpunit.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595

9696
if (\PHP_VERSION_ID >= 80000) {
9797
// PHP 8 requires PHPUnit 9.3+
98-
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.3');
98+
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '9.4');
9999
} elseif (\PHP_VERSION_ID >= 70200) {
100100
// PHPUnit 8 requires PHP 7.2+
101101
$PHPUNIT_VERSION = $getEnvVar('SYMFONY_PHPUNIT_VERSION', '8.3');
@@ -197,7 +197,7 @@
197197
'requires' => ['php' => '*'],
198198
];
199199

200-
$stableVersions = array_filter($info['versions'], function($v) {
200+
$stableVersions = array_filter($info['versions'], function ($v) {
201201
return !preg_match('/-dev$|^dev-/', $v);
202202
});
203203

0 commit comments

Comments
 (0)