Skip to content

Commit 749b003

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 8ab1d52 commit 749b003

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
@@ -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: "Downgrade PHPUnit"
4343
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
@@ -65,7 +65,7 @@ jobs:
6565
run: "composer validate"
6666

6767
- name: "Install dependencies"
68-
run: "composer install --no-interaction --no-progress --no-suggest"
68+
run: "composer install --no-interaction --no-progress"
6969

7070
- name: "Lint"
7171
run: "make lint"
@@ -105,11 +105,11 @@ jobs:
105105

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

110110
- name: "Install highest dependencies"
111111
if: ${{ matrix.dependencies == 'highest' }}
112-
run: "composer update --no-interaction --no-progress --no-suggest"
112+
run: "composer update --no-interaction --no-progress"
113113

114114
- name: "Downgrade PHPUnit"
115115
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
@@ -149,11 +149,11 @@ jobs:
149149

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

154154
- name: "Install highest dependencies"
155155
if: ${{ matrix.dependencies == 'highest' }}
156-
run: "composer update --no-interaction --no-progress --no-suggest"
156+
run: "composer update --no-interaction --no-progress"
157157

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

0 commit comments

Comments
 (0)