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 888d48a commit e940543Copy full SHA for e940543
.github/workflows/tests.yml
@@ -65,6 +65,14 @@ jobs:
65
symfony/validator=${{ matrix.symfony-version }}
66
symfony/yaml=${{ matrix.symfony-version }}
67
68
+ - name: Require Annotations v1 to require for PHP 7
69
+ if: startsWith(matrix.php-version, '7.')
70
+ run: composer require --no-update "doctrine/annotations:^1.8.0"
71
+
72
+ - name: Require Annotations v1/v2 to require for PHP 8+
73
+ if: startsWith(matrix.php-version, '7.') != true
74
+ run: composer require --no-update "doctrine/annotations:^1.8.0|^2.0"
75
76
- name: Install Composer dependencies
77
if: matrix.composer-flags == ''
78
run: composer install
0 commit comments