Merge pull request #83 from dunglas/fix/no-suggest

fix: remove use of deprecated Composer flag --no-suggest
This commit is contained in:
Kévin Dunglas 2020-11-10 12:30:07 +01:00 committed by GitHub
commit b0a160912d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,7 +68,7 @@ RUN set -eux; \
ENV COMPOSER_ALLOW_SUPERUSER=1
# install Symfony Flex globally to speed up download of Composer packages (parallelized prefetching)
RUN set -eux; \
composer global require "symfony/flex" --prefer-dist --no-progress --no-suggest --classmap-authoritative; \
composer global require "symfony/flex" --prefer-dist --no-progress --classmap-authoritative; \
composer clear-cache
ENV PATH="${PATH}:/root/.composer/vendor/bin"