Skip to content

Commit 4218971

Browse files
committed
Downgrade doctrine/orm on PHP 7.1
1 parent 1522b70 commit 4218971

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ jobs:
4242
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
4343
run: "composer require --dev phpunit/phpunit:^7.5.20 --no-update --update-with-dependencies"
4444

45+
- name: "Downgrade Doctrine ORM"
46+
if: matrix.php-version == '7.1'
47+
run: "composer require --dev doctrine/orm:^2.7.5 --no-update --update-with-dependencies"
48+
4549
- name: "Install dependencies"
4650
run: "composer install --no-interaction --no-progress"
4751

@@ -109,6 +113,10 @@ jobs:
109113
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
110114
run: "composer require --dev phpunit/phpunit:^7.5.20 --no-update --update-with-dependencies"
111115

116+
- name: "Downgrade Doctrine ORM"
117+
if: matrix.php-version == '7.1'
118+
run: "composer require --dev doctrine/orm:^2.7.5 --no-update --update-with-dependencies"
119+
112120
- name: "Install lowest dependencies"
113121
if: ${{ matrix.dependencies == 'lowest' }}
114122
run: "composer update --prefer-lowest --no-interaction --no-progress"
@@ -153,6 +161,10 @@ jobs:
153161
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
154162
run: "composer require --dev phpunit/phpunit:^7.5.20 --no-update --update-with-dependencies"
155163

164+
- name: "Downgrade Doctrine ORM"
165+
if: matrix.php-version == '7.1'
166+
run: "composer require --dev doctrine/orm:^2.7.5 --no-update --update-with-dependencies"
167+
156168
- name: "Install lowest dependencies"
157169
if: ${{ matrix.dependencies == 'lowest' }}
158170
run: "composer update --prefer-lowest --no-interaction --no-progress"

0 commit comments

Comments
 (0)