From 76c509cef2fe74de18a7bab430c998d68bea13f8 Mon Sep 17 00:00:00 2001 From: Anna Reiter Date: Fri, 17 Apr 2026 12:17:18 +0200 Subject: [PATCH] [CLEANUP] Move PHP-CSS-Fixer configuration to `Build/` --- config/php-cs-fixer.php => Build/php-cs-fixer/config.php | 0 composer.json | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename config/php-cs-fixer.php => Build/php-cs-fixer/config.php (100%) diff --git a/config/php-cs-fixer.php b/Build/php-cs-fixer/config.php similarity index 100% rename from config/php-cs-fixer.php rename to Build/php-cs-fixer/config.php diff --git a/composer.json b/composer.json index 5c240cf5..6c0365a4 100644 --- a/composer.json +++ b/composer.json @@ -81,7 +81,7 @@ "@check:tests" ], "check:php:codesniffer": "phpcs --standard=config/phpcs.xml bin config src tests", - "check:php:fixer": "\"./.phive/php-cs-fixer\" --config=config/php-cs-fixer.php fix --dry-run -v --show-progress=dots --diff 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", "check:php:stan": "phpstan --no-progress --configuration=config/phpstan.neon", @@ -110,7 +110,7 @@ "@fix:php:fixer" ], "fix:php:codesniffer": "phpcbf --standard=config/phpcs.xml bin config src tests", - "fix:php:fixer": "\"./.phive/php-cs-fixer\" --config=config/php-cs-fixer.php fix 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=config/phpstan.neon --generate-baseline=config/phpstan-baseline.neon --allow-empty-baseline", "phpstan:clearcache": "phpstan clear-result-cache"