From 818a5c1ac4567dbecaa5f0ce24af3b2643a24e90 Mon Sep 17 00:00:00 2001 From: rxu Date: Fri, 18 Dec 2020 21:02:34 +0700 Subject: [PATCH] [ticket/16649] Do not require symfony/filesystem 5.2.x as bugfixed 5.2.1 is out PHPBB3-16649 --- phpBB/composer.json | 2 +- travis/setup-phpbb.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/composer.json b/phpBB/composer.json index bbb3c93f8f..84fcde80e6 100644 --- a/phpBB/composer.json +++ b/phpBB/composer.json @@ -61,7 +61,7 @@ "laravel/homestead": "~10.17", "phing/phing": "~2.4", "misantron/dbunit": "~5.0", - "phpunit/phpunit": "^8.5 || ^9.2", + "phpunit/phpunit": "^8.5 || ^9.3", "squizlabs/php_codesniffer": "~3.4", "symfony/browser-kit": "~5.2", "symfony/css-selector": "~5.2", diff --git a/travis/setup-phpbb.sh b/travis/setup-phpbb.sh index 20d8ae7d29..dcbe4f144d 100755 --- a/travis/setup-phpbb.sh +++ b/travis/setup-phpbb.sh @@ -46,6 +46,6 @@ cd phpBB php ../composer.phar install --dev --no-interaction if [[ "$TRAVIS_PHP_VERSION" =~ ^nightly$ || "$TRAVIS_PHP_VERSION" =~ ^8 ]] then - php ../composer.phar require symfony/filesystem:5.2.x-dev phpunit/phpunit:^9.3 --update-with-all-dependencies --ignore-platform-reqs --no-interaction + php ../composer.phar require phpunit/phpunit:^9.3 --update-with-all-dependencies --ignore-platform-reqs --no-interaction fi cd ..