1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-21 08:00:46 +01:00

[ticket/16649] Do not require symfony/filesystem 5.2.x as bugfixed 5.2.1 is out

PHPBB3-16649
This commit is contained in:
rxu 2020-12-18 21:02:34 +07:00
parent 929acfb64c
commit 818a5c1ac4
No known key found for this signature in database
GPG Key ID: 955F0567380E586A
2 changed files with 2 additions and 2 deletions

View File

@ -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",

View File

@ -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 ..