From 20bfd5b717d0a0ef8ad4848b88fcecef9d46624c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Mon, 20 Jan 2025 15:01:34 +0100 Subject: [PATCH] Add Rector command to composer scripts Included the Rector command in composer.json to streamline running Rector tasks. This addition ensures consistency and improves developer efficiency by integrating the tool directly into the project workflow. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3ef287196..d4134c916 100644 --- a/composer.json +++ b/composer.json @@ -163,7 +163,8 @@ "assets:install %PUBLIC_DIR%": "symfony-cmd" }, "php-cs-fixer": "php-cs-fixer fix --config=./.php-cs-fixer.dist.php --show-progress=none", - "phpstan": "phpstan --no-progress" + "phpstan": "phpstan --no-progress", + "rector": "rector --no-progress-bar" }, "extra": { "symfony": {