1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/16549] update dependencies for nightly tests

PHPBB3-16549
This commit is contained in:
rxu
2020-07-13 20:44:56 +07:00
parent 659e1e4a26
commit f6a7fe168a
2 changed files with 7 additions and 3 deletions

View File

@@ -38,4 +38,11 @@ fi
cd phpBB
php ../composer.phar install --dev --no-interaction
if [ "$TRAVIS_PHP_VERSION" == "nightly" ]
then
php ../composer.phar config minimum-stability dev \
&& php ../composer.phar config prefer-stable true \
&& 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 --dev --update-with-dependencies --ignore-platform-reqs
fi
cd ..