From 3b3d846b8ce41487cb9a6829011b997955b7ddd2 Mon Sep 17 00:00:00 2001 From: vnmedeiros Date: Tue, 7 Dec 2021 16:10:19 -0300 Subject: [PATCH] tests: back `phpunit-polyfills` to require-dev --- build.sh | 2 +- composer.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 2931c00dd..b60745111 100755 --- a/build.sh +++ b/build.sh @@ -49,7 +49,7 @@ then then composer install else - composer install # --no-dev + composer install --no-dev fi fi diff --git a/composer.json b/composer.json index b0615d74a..8586c5f18 100644 --- a/composer.json +++ b/composer.json @@ -5,11 +5,12 @@ "require": { "respect/validation": "^1.1", "smalot/pdfparser": "*", - "kornrunner/blurhash": "^1.1" + "kornrunner/blurhash": "^1.1", + "phpcompatibility/php-compatibility": "*" }, "require-dev": { "squizlabs/php_codesniffer": "^2.2 || ^3.0.2", - "phpcompatibility/php-compatibility": "*" + "yoast/phpunit-polyfills": "^1.0.1" }, "prefer-stable" : true, "minimum-stability": "dev",