We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3725e35 commit 2fe1d0aCopy full SHA for 2fe1d0a
1 file changed
.github/workflows/ci.yml
@@ -84,6 +84,13 @@ jobs:
84
key: composer-${{ matrix.php }}-${{ matrix.deps }}-${{ hashFiles('**/composer.json') }}
85
restore-keys: composer-${{ matrix.php }}-${{ matrix.deps }}-
86
87
+ # twig/twig 3.x requires PHP >= 8.1, but this package still supports 8.0
88
+ # (Twig is an optional adapter). Drop it on the 8.0 job so dependency
89
+ # resolution succeeds; TwigAdapterTest skips itself when twig/twig is absent.
90
+ - name: Drop optional Twig on PHP 8.0
91
+ if: matrix.php == '8.0'
92
+ run: composer remove --dev twig/twig --no-update
93
+
94
- name: Install highest dependencies
95
if: matrix.deps == 'highest'
96
run: composer update --prefer-dist --no-progress --no-interaction
0 commit comments