diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 5c7f654d..534977e5 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 @@ -133,7 +133,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 @@ -148,11 +148,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 @@ -187,7 +187,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 @@ -227,7 +227,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 38e423a3..36c13767 100644 --- a/composer.json +++ b/composer.json @@ -65,7 +65,6 @@ "twig/twig": "^2.14 || ^3.1" }, "require-dev": { - "bamarni/composer-bin-plugin": "^1.3", "doctrine/doctrine-bundle": "^1.12 || ^2.0", "doctrine/orm": "^2.7", "ergebnis/composer-normalize": "^2.0.1", @@ -92,13 +91,5 @@ }, "config": { "sort-packages": true - }, - "scripts": { - "post-install-cmd": [ - "@composer bin all install --ansi" - ], - "post-update-cmd": [ - "@composer bin all install --ansi" - ] } }