Skip to content

Commit

Permalink
The --no-suggest option has been removed in Composer 2
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 10, 2020
1 parent d3b44de commit f1eda23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: "docker://ergebnis/composer-root-version-action:0.1.3"

- name: "Update dependencies with composer"
run: "php7.3 ./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest"
run: "php7.3 ./tools/composer update --no-ansi --no-interaction --no-progress"

- name: "Run vimeo/psalm"
run: "php7.3 ./tools/psalm --config=psalm.xml --no-progress --shepherd --show-info=false --stats"
Expand Down Expand Up @@ -74,11 +74,11 @@ jobs:

- name: "Install lowest dependencies with composer"
if: "matrix.dependencies == 'lowest'"
run: "./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest --prefer-lowest"
run: "./tools/composer update --no-ansi --no-interaction --no-progress --prefer-lowest"

- name: "Install highest dependencies with composer"
if: "matrix.dependencies == 'highest'"
run: "./tools/composer update --no-ansi --no-interaction --no-progress --no-suggest"
run: "./tools/composer update --no-ansi --no-interaction --no-progress"

- name: "Run tests with phpunit/phpunit"
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
Expand Down
1 change: 0 additions & 1 deletion build.xml
Expand Up @@ -13,7 +13,6 @@
<arg value="--no-interaction"/>
<arg value="--no-progress"/>
<arg value="--no-ansi"/>
<arg value="--no-suggest"/>
</exec>
</target>

Expand Down

0 comments on commit f1eda23

Please sign in to comment.