Skip to content

Commit 253dabd

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 d639142 commit 253dabd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: .github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: "composer validate"
3737

3838
- name: "Install dependencies"
39-
run: "composer install --no-interaction --no-progress --no-suggest"
39+
run: "composer install --no-interaction --no-progress"
4040

4141
- name: "Downgrade PHPUnit"
4242
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
@@ -64,7 +64,7 @@ jobs:
6464
run: "composer validate"
6565

6666
- name: "Install dependencies"
67-
run: "composer install --no-interaction --no-progress --no-suggest"
67+
run: "composer install --no-interaction --no-progress"
6868

6969
- name: "Lint"
7070
run: "make lint"
@@ -101,11 +101,11 @@ jobs:
101101

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

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

110110
- name: "Downgrade PHPUnit"
111111
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
@@ -141,7 +141,7 @@ jobs:
141141
tools: composer:v2
142142

143143
- name: "Install dependencies"
144-
run: "composer update --no-interaction --no-progress --no-suggest"
144+
run: "composer update --no-interaction --no-progress"
145145

146146
- name: "Downgrade PHPUnit"
147147
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'

0 commit comments

Comments
 (0)