From ea60a4747705ce71bda8a15e3e6a1f4f43ad95b0 Mon Sep 17 00:00:00 2001 From: Yozhef Date: Mon, 21 Dec 2020 11:11:42 +0200 Subject: [PATCH] feat(Composer) remove using the deprecated option "--no-suggest" composer 2.0. --- .github/workflows/coding-standards.yml | 2 +- .github/workflows/static-analysis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coding-standards.yml b/.github/workflows/coding-standards.yml index 06d0aa890d..573a320aaf 100644 --- a/.github/workflows/coding-standards.yml +++ b/.github/workflows/coding-standards.yml @@ -40,7 +40,7 @@ jobs: restore-keys: "php-${{ matrix.php-version }}-composer-locked-" - name: "Install dependencies with Composer" - run: "composer install --no-interaction --no-progress --no-suggest" + run: "composer install --no-interaction --no-progress" # https://github.com/doctrine/.github/issues/3 - name: "Run PHP_CodeSniffer" diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 81274ba2f0..fb0f8845c6 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -40,7 +40,7 @@ jobs: restore-keys: "php-${{ matrix.php-version }}-composer-locked-" - name: "Install dependencies with composer" - run: "composer install --no-interaction --no-progress --no-suggest" + run: "composer install --no-interaction --no-progress" - name: "Run a static analysis with phpstan/phpstan" run: "vendor/bin/phpstan analyse"