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"