Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Remove composer-bin plugin #374

Merged
merged 1 commit into from
Dec 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
9 changes: 0 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
"symfony/routing": "^5.4 || ^6.0"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3",
"ergebnis/composer-normalize": "^2.0.1",
"symfony/browser-kit": "^5.4 || ^6.0"
},
Expand All @@ -64,13 +63,5 @@
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"@composer bin all install --ansi"
],
"post-update-cmd": [
"@composer bin all install --ansi"
]
}
}