From 79e9df235fd79f24057924ae8e590570331b7a40 Mon Sep 17 00:00:00 2001 From: Matthew Grasmick Date: Thu, 11 Jun 2026 08:52:33 -0400 Subject: [PATCH] Allow PHP_CodeSniffer 4 Widen the squizlabs/php_codesniffer constraint to ^3.13 || ^4.0. The existing phpcs.xml.dist ruleset works unchanged with 4.0.1; the full test suite (lint, PHPUnit, phpcs, phpstan) passes. Co-Authored-By: Claude Fable 5 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a5149b9..e050258 100644 --- a/composer.json +++ b/composer.json @@ -41,7 +41,7 @@ "php-coveralls/php-coveralls": "^2.8", "phpstan/phpstan": "^2.0", "phpunit/phpunit": "^10.5 || ^11 || ^12 || ^13", - "squizlabs/php_codesniffer": "^3.13" + "squizlabs/php_codesniffer": "^3.13 || ^4.0" }, "scripts": { "cs": "phpcs",