From 8774d78e177e6838f225944f1c0c57510e83b85f Mon Sep 17 00:00:00 2001 From: jrfnl Date: Fri, 1 Jul 2022 11:12:22 +0200 Subject: [PATCH] Composer: update CS dependencies WordPressCS 3.0.0 (and 3.0.1) has been released. This commit updates the Composer dependencies to use the new version, including updating the underlying PHP_CodeSniffer dependency to the new minimum supported version for WPCS. Note: the Composer PHPCS installer plugin is no longer explicitly required as it is now a dependency of WordPressCS, so we inherit the dependency automatically. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 95cffb279ae2e..750952457ff17 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ }, "require-dev": { "squizlabs/php_codesniffer": "3.7.2", - "wp-coding-standards/wpcs": "~3.0.0", + "wp-coding-standards/wpcs": "~3.0.1", "phpcompatibility/phpcompatibility-wp": "~2.1.3", "yoast/phpunit-polyfills": "^1.1.0" },