Skip to content

Commit d15ae5f

Browse files
authored
Removed deprecated --no-suggest composer flag (#7157)
Copying the GitHub action for instance to run will output > You are using the deprecated option "--no-suggest". It has no effect and will break in Composer 3.
1 parent b63d579 commit d15ae5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dusk.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1746,7 +1746,7 @@ To run your Dusk tests on [Travis CI](https://travis-ci.org), use the following
17461746

17471747
install:
17481748
- cp .env.testing .env
1749-
- travis_retry composer install --no-interaction --prefer-dist --no-suggest
1749+
- travis_retry composer install --no-interaction --prefer-dist
17501750
- php artisan key:generate
17511751
- php artisan dusk:chrome-driver
17521752

@@ -1777,7 +1777,7 @@ If you are using [Github Actions](https://github.com/features/actions) to run yo
17771777
sudo systemctl start mysql
17781778
mysql --user="root" --password="root" -e "CREATE DATABASE 'my-database' character set UTF8mb4 collate utf8mb4_bin;"
17791779
- name: Install Composer Dependencies
1780-
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
1780+
run: composer install --no-progress --prefer-dist --optimize-autoloader
17811781
- name: Generate Application Key
17821782
run: php artisan key:generate
17831783
- name: Upgrade Chrome Driver

0 commit comments

Comments
 (0)