We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82b76fe commit 0736621Copy full SHA for 0736621
.github/workflows/ci.yml
@@ -34,6 +34,10 @@ jobs:
34
- name: Constrain Symfony version
35
run: |
36
sed -ri 's/"symfony\/([^"]+)": "[^"]+"/"symfony\/\1": "${{ matrix.symfony-version }}"/g' composer.json
37
+ # symfony/clock does not exist for 5.4 (added in 6.2); keep it installable on 5.4 jobs
38
+ if [ "${{ matrix.symfony-version }}" = "5.4.*" ]; then
39
+ sed -ri 's/"symfony\/clock": "[^"]+"/"symfony\/clock": "^6.2 | ^7.0"/' composer.json
40
+ fi
41
42
- name: Constrain Doctrine ORM version
43
0 commit comments