From db2669b3cbd12466ea34e3be52737e3478e07965 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 19 Aug 2023 14:00:18 +0200 Subject: [PATCH] [ticket/17176] Remove special handling for PHP 8 in github actions PHPBB3-17176 --- .github/setup-phpbb.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/setup-phpbb.sh b/.github/setup-phpbb.sh index 2fc1634978..cfec319f2e 100755 --- a/.github/setup-phpbb.sh +++ b/.github/setup-phpbb.sh @@ -28,9 +28,4 @@ fi cd phpBB php ../composer.phar install --dev --no-interaction -if [[ "$PHP_VERSION" =~ ^nightly$ || "$PHP_VERSION" =~ ^8 ]] -then - php ../composer.phar remove phpunit/dbunit --dev --update-with-dependencies \ - && php ../composer.phar require symfony/yaml:~4.4 misantron/dbunit:~5.0 phpunit/phpunit:^9.3 doctrine/instantiator:^1.4 --dev --update-with-all-dependencies --ignore-platform-reqs -fi cd ..