Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit 1c7670d

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 be19774 commit 1c7670d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

+6-6
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'
@@ -145,11 +145,11 @@ jobs:
145145

146146
- name: "Install lowest dependencies"
147147
if: ${{ matrix.dependencies == 'lowest' }}
148-
run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest"
148+
run: "composer update --prefer-lowest --no-interaction --no-progress"
149149

150150
- name: "Install highest dependencies"
151151
if: ${{ matrix.dependencies == 'highest' }}
152-
run: "composer update --no-interaction --no-progress --no-suggest"
152+
run: "composer update --no-interaction --no-progress"
153153

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

0 commit comments

Comments
 (0)