Skip to content

Commit 22dae44

Browse files
authored
Merge pull request #446 from php-http/fix-flex-setup
adjust composer install steps
2 parents 7faff5c + a29d350 commit 22dae44

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ jobs:
9393
run: "composer config minimum-stability stable"
9494
if: "${{ matrix.stability == 'stable' }}"
9595

96-
- name: "Install dependencies"
97-
run: "composer require --no-progress --no-scripts --no-plugins symfony/flex ${{ matrix.dependencies }}"
96+
- name: "Add dependencies and enable flex"
97+
run: |
98+
composer require --no-update symfony/flex ${{ matrix.dependencies }}
99+
composer config --no-plugins allow-plugins.symfony/flex true
98100
99101
- name: "Install dependencies with Composer"
100102
uses: "ramsey/composer-install@v2"

0 commit comments

Comments
 (0)