Skip to content

Commit 1a70c4b

Browse files
The --no-suggest option has been removed in Composer 2
1 parent 74d0e21 commit 1a70c4b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
uses: "docker://ergebnis/composer-root-version-action:0.1.3"
3333

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

3737
- name: "Run vimeo/psalm"
3838
run: "php7.3 ./tools/psalm --config=.psalm/config.xml --no-progress --shepherd --show-info=false --stats"
@@ -76,11 +76,11 @@ jobs:
7676

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

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

8585
- name: "Run tests with phpunit/phpunit"
8686
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"

build.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<arg value="--no-interaction"/>
1414
<arg value="--no-progress"/>
1515
<arg value="--no-ansi"/>
16-
<arg value="--no-suggest"/>
1716
</exec>
1817
</target>
1918

0 commit comments

Comments
 (0)