From 7b3ce809bf171c1f2b8f6c38ac166ab958eb2e3a Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 13 Nov 2023 23:58:22 +0100 Subject: [PATCH] Composer: raise the minimum supported PHPCSUtils version to 1.0.9 PHPCSUtils 1.0.9 has been released and contains similar changes to update to the new PHPCS fork. Ref: * https://github.com/PHPCSStandards/PHPCSUtils/releases --- README.md | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7714557c..83e4dfc5 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ Minimum Requirements * PHP 5.4 or higher. * [PHP_CodeSniffer][phpcs-gh] version **3.8.0** or higher. -* [PHPCSUtils][phpcsutils-gh] version **1.0.8** or higher. +* [PHPCSUtils][phpcsutils-gh] version **1.0.9** or higher. Installation diff --git a/composer.json b/composer.json index 8f5cda1d..a5de4501 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "require" : { "php" : ">=5.4", "phpcsstandards/php_codesniffer" : "^3.8.0", - "phpcsstandards/phpcsutils" : "^1.0.8" + "phpcsstandards/phpcsutils" : "^1.0.9" }, "require-dev" : { "php-parallel-lint/php-parallel-lint": "^1.3.2",