From 7530a79752ff7c1e7c38be5bf03bf409bb47fb3e Mon Sep 17 00:00:00 2001 From: Asmir Mustafic Date: Sun, 13 Dec 2020 20:37:44 +0100 Subject: [PATCH 1/2] Use composer v1 --- .travis/install_cs.sh | 2 +- .travis/install_test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis/install_cs.sh b/.travis/install_cs.sh index 488f484a..4dd1c034 100755 --- a/.travis/install_cs.sh +++ b/.travis/install_cs.sh @@ -2,7 +2,7 @@ set -ex -composer self-update +composer self-update --1 phpenv config-rm xdebug.ini diff --git a/.travis/install_test.sh b/.travis/install_test.sh index 97846a7d..c81c2002 100755 --- a/.travis/install_test.sh +++ b/.travis/install_test.sh @@ -2,7 +2,7 @@ set -ex -composer self-update +composer self-update --1 if [[ $SYMFONY_VERSION ]]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi From 75c3c826ac81248b22f4a9d70e7128c3a1b7ab56 Mon Sep 17 00:00:00 2001 From: Asmir Mustafic Date: Sun, 13 Dec 2020 20:44:19 +0100 Subject: [PATCH 2/2] there is no need for source package --- .travis/install_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis/install_test.sh b/.travis/install_test.sh index c81c2002..c9df7224 100755 --- a/.travis/install_test.sh +++ b/.travis/install_test.sh @@ -6,4 +6,4 @@ composer self-update --1 if [[ $SYMFONY_VERSION ]]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi -COMPOSER_MEMORY_LIMIT=-1 composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction +COMPOSER_MEMORY_LIMIT=-1 composer update ${COMPOSER_FLAGS} --no-interaction