Merge branch '3.4' into 4.4

* 3.4:
  [PhpUnitBridge] fix installing on PHP 8
This commit is contained in:
Nicolas Grekas 2020-05-20 23:50:56 +02:00
commit a6ea1da1e6
1 changed files with 2 additions and 3 deletions

View File

@ -197,10 +197,9 @@ if (!file_exists("$PHPUNIT_DIR/$PHPUNIT_VERSION_DIR/phpunit") || $configurationH
$passthruOrFail("$COMPOSER require --no-update phpunit/phpunit-mock-objects \"~3.1.0\"");
}
if ($info['requires']['php'] !== $phpVersion = preg_replace('{\^([\d\.]++)$}', '>=$1', $info['requires']['php'])) {
$passthruOrFail("$COMPOSER require --no-update \"php:$phpVersion\"");
if (preg_match('{\^(\d++\.\d++)[\d\.]*)$}', $info['requires']['php'], $phpVersion)) {
$passthruOrFail("$COMPOSER config platform.php \"$phpVersion[1].99\"");
}
$passthruOrFail("$COMPOSER config --unset platform.php");
if (file_exists($path = $root.'/vendor/symfony/phpunit-bridge')) {
$passthruOrFail("$COMPOSER require --no-update symfony/phpunit-bridge \"*@dev\"");
$passthruOrFail("$COMPOSER config repositories.phpunit-bridge path ".escapeshellarg(str_replace('/', DIRECTORY_SEPARATOR, $path)));