Skip to content

Commit bf07c6d

Browse files
ruudkondrejmirtes
authored andcommitted
Composer > Remove --no-suggest
You are using the deprecated option "--no-suggest". It has no effect and will break in Composer 3.
1 parent 3e6f60d commit bf07c6d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: "composer validate"
3838

3939
- name: "Install dependencies"
40-
run: "composer install --no-interaction --no-progress --no-suggest"
40+
run: "composer install --no-interaction --no-progress"
4141

4242
- name: "Lint"
4343
run: "make lint"
@@ -61,7 +61,7 @@ jobs:
6161
run: "composer validate"
6262

6363
- name: "Install dependencies"
64-
run: "composer install --no-interaction --no-progress --no-suggest"
64+
run: "composer install --no-interaction --no-progress"
6565

6666
- name: "Lint"
6767
run: "make lint"
@@ -100,11 +100,11 @@ jobs:
100100

101101
- name: "Install lowest dependencies"
102102
if: ${{ matrix.dependencies == 'lowest' }}
103-
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest"
103+
run: "composer update --prefer-lowest --no-interaction --no-progress"
104104

105105
- name: "Install highest dependencies"
106106
if: ${{ matrix.dependencies == 'highest' }}
107-
run: "composer update --no-interaction --no-progress --no-suggest"
107+
run: "composer update --no-interaction --no-progress"
108108

109109
- name: "Update PHPStan"
110110
if: matrix.php-version == '8.0'

0 commit comments

Comments
 (0)