Skip to content

Commit

Permalink
Fix composer conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhelias committed Nov 3, 2023
1 parent bfccfd9 commit 52b6860
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,25 @@ jobs:
include:
# Lowest Deps
- php: 8.1
symfony: 5.4.*
symfony: 6.2.*
coverage: 'none'
composer-flags: '--prefer-stable --prefer-lowest'
can-fail: false
# LTS with latest stable PHP
- php: latest
symfony: 5.4.*
symfony: 6.3.*
coverage: 'none'
composer-flags: '--prefer-stable'
can-fail: false
# Active release
- php: latest
symfony: 6.3.*
symfony: 6.4.*@beta
coverage: pcov
composer-flags: '--prefer-stable'
can-fail: false
# Development release
- php: nightly
symfony: 6.4.*@dev
symfony: 7.0.*@dev
coverage: 'none'
composer-flags: ''
can-fail: true
Expand All @@ -61,7 +61,7 @@ jobs:
fail-fast: true

- name: Set Composer stability
if: matrix.symfony == '6.4.*@dev'
if: matrix.symfony == '7.0.*@dev'
run: "composer config minimum-stability dev"

- name: Get composer cache directory
Expand Down

0 comments on commit 52b6860

Please sign in to comment.