From db355d007a8f97661575a3e1d482996226b39435 Mon Sep 17 00:00:00 2001 From: Anna Reiter Date: Fri, 17 Apr 2026 12:24:48 +0200 Subject: [PATCH] [CLEANUP] Move PHP Codesniffer configuration to `Build/` --- config/phpcs.xml => Build/phpcs/config.xml | 0 composer.json | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename config/phpcs.xml => Build/phpcs/config.xml (100%) diff --git a/config/phpcs.xml b/Build/phpcs/config.xml similarity index 100% rename from config/phpcs.xml rename to Build/phpcs/config.xml diff --git a/composer.json b/composer.json index 7a922053..6f3fc548 100644 --- a/composer.json +++ b/composer.json @@ -80,7 +80,7 @@ "check:dynamic": [ "@check:tests" ], - "check:php:codesniffer": "phpcs --standard=config/phpcs.xml bin config src tests", + "check:php:codesniffer": "phpcs --standard=./Build/phpcs/config.xml Build bin config src tests", "check:php:fixer": "\"./.phive/php-cs-fixer\" --config=./Build/php-cs-fixer/config.php fix --dry-run -v --show-progress=dots --diff Build bin config src tests", "check:php:lint": "parallel-lint bin config src tests", "check:php:rector": "rector process --no-progress-bar --dry-run --config=config/rector.php", @@ -109,7 +109,7 @@ "@fix:php:codesniffer", "@fix:php:fixer" ], - "fix:php:codesniffer": "phpcbf --standard=config/phpcs.xml bin config src tests", + "fix:php:codesniffer": "phpcbf --standard=./Build/phpcs/config.xml Build bin config src tests", "fix:php:fixer": "\"./.phive/php-cs-fixer\" --config=./Build/php-cs-fixer/config.php fix Build bin config src tests", "fix:php:rector": "rector process --config=config/rector.php", "phpstan:baseline": "phpstan --configuration=./Build/phpstan/phpstan.neon --generate-baseline=./Build/phpstan/phpstan-baseline.neon --allow-empty-baseline",