From b8f39ada1d5bcddfb5c74e72c595f97496a63afc Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Tue, 27 Jan 2026 11:06:55 -0300 Subject: [PATCH] fix(docs): Update Rector command in `composer.json` to remove unnecessary 'src' argument. --- CHANGELOG.md | 1 + composer.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7271a96..13be1d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 0.2.1 Under development - Bug #121: Update command syntax in `development.md` and `testing.md` for clarity and consistency (@terabytesoftw) +- Bug #122: Update Rector command in `composer.json` to remove unnecessary 'src' argument (@terabytesoftw) ## 0.2.0 January 24, 2024 diff --git a/composer.json b/composer.json index d0ca562..89793b1 100644 --- a/composer.json +++ b/composer.json @@ -74,7 +74,7 @@ "ecs": "./vendor/bin/ecs --fix", "mutation": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100", "mutation-static": "./vendor/bin/infection --threads=4 --ignore-msi-with-no-mutations --min-msi=100 --min-covered-msi=100 --static-analysis-tool=phpstan --static-analysis-tool-options='--memory-limit=-1'", - "rector": "./vendor/bin/rector process src", + "rector": "./vendor/bin/rector process", "static": "./vendor/bin/phpstan --memory-limit=-1", "sync-metadata": [ "curl -fsSL -o .editorconfig https://raw.githubusercontent.com/yii2-extensions/template/main/.editorconfig",