From 7ffc8074b4a2c917ed00f5b06fc4efef6f24dee8 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sat, 25 Feb 2023 14:16:57 +0100 Subject: [PATCH] restrict PHPUnit to v5-v9 PHPUnit 10 fails with old configuration schema while older releases only print a warning. Stick with at most v9 for now, as we are testing against older PHP versions that to not support the new scheme. --- composer.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 6b521ee..c20dc78 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "stklcode/statify-blacklist", - "version": "1.6.1", + "version": "1.6.2", "description": "A filter extension for the famous Statify WordPress plugin", "keywords": [ "wordpress", @@ -23,10 +23,10 @@ }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^0.7", - "phpunit/phpunit": "*", + "phpunit/phpunit": "^5|^6|^7|^8|^9", "phpunit/php-code-coverage": "*", "slowprog/composer-copy-file": "~0.3", - "squizlabs/php_codesniffer": "^3.6", + "squizlabs/php_codesniffer": "^3.7", "phpcompatibility/phpcompatibility-wp": "^2.1", "wp-coding-standards/wpcs": "^2.3" }, diff --git a/package.json b/package.json index 8819128..df75547 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "statify-blacklist", - "version": "1.6.1", + "version": "1.6.2", "description": "A filter extension for the famous Statify WordPress plugin", "author": "Stefan Kalscheuer", "license": "GPL-2.0+"