diff --git a/.github/actions/composer/composer/install/run.sh b/.github/actions/composer/composer/install/run.sh index 3cc3df12..a052ba6a 100755 --- a/.github/actions/composer/composer/install/run.sh +++ b/.github/actions/composer/composer/install/run.sh @@ -3,19 +3,19 @@ dependencies="${COMPOSER_INSTALL_DEPENDENCIES}" if [[ ${dependencies} == "lowest" ]]; then - composer update --no-interaction --no-progress --no-suggest --prefer-lowest + composer update --no-interaction --no-progress --prefer-lowest exit $? fi if [[ ${dependencies} == "locked" ]]; then - composer install --no-interaction --no-progress --no-suggest + composer install --no-interaction --no-progress exit $? fi if [[ ${dependencies} == "highest" ]]; then - composer update --no-interaction --no-progress --no-suggest + composer update --no-interaction --no-progress exit $? fi diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 952de0a3..b090b649 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -372,7 +372,7 @@ jobs: run: "composer remove composer/composer --no-interaction --no-progress" - name: "Require composer/composer" - run: "composer require composer/composer:${{ env.COMPOSER_VERSION }} --no-interaction --no-progress --no-suggest" + run: "composer require composer/composer:${{ env.COMPOSER_VERSION }} --no-interaction --no-progress" - name: "Remove git placeholder configuration with jq" run: "echo $(cat box.json | jq 'del(.git)') > box.json" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0b780dab..8d8bd4ab 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -63,7 +63,7 @@ jobs: run: "composer remove composer/composer --no-interaction --no-progress" - name: "Require composer/composer" - run: "composer require composer/composer:${{ env.COMPOSER_VERSION }} --no-interaction --no-progress --no-suggest" + run: "composer require composer/composer:${{ env.COMPOSER_VERSION }} --no-interaction --no-progress" - name: "Validate configuration for humbug/box" run: "phar/box.phar validate box.json" diff --git a/Makefile b/Makefile index 45c74d0e..22abebc3 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ help: ## Displays this list of targets with descriptions .PHONY: phar phar: vendor ## Builds a phar with humbug/box phar/box.phar validate box.json - composer require composer/composer:${COMPOSER_VERSION} --no-interaction --no-progress --no-suggest --update-with-dependencies + composer require composer/composer:${COMPOSER_VERSION} --no-interaction --no-progress --update-with-dependencies phar/box.phar compile --config=box.json git checkout HEAD -- composer.json composer.lock phar/box.phar info .build/phar/composer-normalize.phar @@ -61,4 +61,4 @@ tests: vendor ## Runs auto-review, unit, and integration tests with phpunit/phpu vendor: composer.json composer.lock composer validate --strict - composer install --no-interaction --no-progress --no-suggest + composer install --no-interaction --no-progress