Skip to content

Commit 6f904b2

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 04cace0 commit 6f904b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 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: "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"
@@ -102,11 +102,11 @@ jobs:
102102

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

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

111111
- name: "Downgrade PHPUnit"
112112
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
@@ -146,11 +146,11 @@ jobs:
146146

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

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

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

0 commit comments

Comments
 (0)