diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 856100e..cb9c492 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -40,7 +40,7 @@ jobs: php${{ matrix.php-version }}-composer- - name: "Install locked dependencies with composer" - run: composer install --no-interaction --no-progress --no-suggest + run: composer install --no-interaction --no-progress - name: "Run composer lint" run: make lint-composer @@ -91,7 +91,7 @@ jobs: ${{ matrix.php-version }}-composer- - name: "Install locked dependencies with composer" - run: composer install --no-interaction --no-progress --no-suggest + run: composer install --no-interaction --no-progress - name: "Run phpstan/phpstan" run: make phpstan @@ -134,7 +134,7 @@ jobs: - name: 'Install Symfony Flex' run: | - composer global require --prefer-dist --no-progress --no-suggest --ansi symfony/flex + composer global require --prefer-dist --no-progress --ansi symfony/flex - name: "Cache dependencies installed with composer" uses: actions/cache@v2.1.7 @@ -149,11 +149,11 @@ jobs: - name: "Install lowest dependencies with composer" if: matrix.dependencies == 'lowest' - run: composer update --no-interaction --no-progress --no-suggest --prefer-lowest + run: composer update --no-interaction --no-progress --prefer-lowest - name: "Install highest dependencies with composer" if: matrix.dependencies == 'highest' - run: composer update --no-interaction --no-progress --no-suggest + run: composer update --no-interaction --no-progress - name: "Run tests with phpunit/phpunit" run: make test @@ -188,7 +188,7 @@ jobs: php${{ matrix.php-version }}-composer- - name: "Install locked dependencies with composer" - run: composer install --no-interaction --no-progress --no-suggest + run: composer install --no-interaction --no-progress - name: "Collect code coverage with pcov and phpunit/phpunit" run: make coverage @@ -228,7 +228,7 @@ jobs: php${{ matrix.php-version }}-composer- - name: "Install locked dependencies with composer" - run: composer install --no-interaction --no-progress --no-suggest + run: composer install --no-interaction --no-progress - name: "Run mutation tests with pcov and infection/infection" run: make infection diff --git a/composer.json b/composer.json index 58297cf..79d6fcd 100644 --- a/composer.json +++ b/composer.json @@ -51,7 +51,6 @@ "symfony/http-kernel": "^5.4 || ^6.0" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.3", "ergebnis/composer-normalize": "^2.0.1", "nyholm/psr7": "^1.0", "symfony/browser-kit": "^5.4 || ^6.0", @@ -73,13 +72,5 @@ }, "config": { "sort-packages": true - }, - "scripts": { - "post-install-cmd": [ - "@composer bin all install --ansi" - ], - "post-update-cmd": [ - "@composer bin all install --ansi" - ] } }