We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f664be9 commit cb7304dCopy full SHA for cb7304d
.github/workflows/build.yml
@@ -158,5 +158,10 @@ jobs:
158
if: matrix.php-version == '7.1' || matrix.php-version == '7.2' || matrix.php-version == '7.3'
159
run: "composer require --dev phpunit/phpunit:^7.5.20 --update-with-dependencies"
160
161
+ # in PHP 7.1, the json_decode() 2nd parameter requires bool, while PHP 7.2 it's null|int
162
+ - name: "Downgrade nette/utils"
163
+ if: matrix.php-version == '7.1'
164
+ run: "composer require --dev nette/utils:^2.3 nette/forms:^2.4 --update-with-dependencies"
165
+
166
- name: "PHPStan"
167
run: "make phpstan"
0 commit comments