Skip to content

Commit 320403c

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 9eb88c9 commit 320403c

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"
@@ -103,11 +103,11 @@ jobs:
103103

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

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

112112
- name: "Downgrade PHPUnit"
113113
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
@@ -148,11 +148,11 @@ jobs:
148148

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

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

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

0 commit comments

Comments
 (0)