From df1d4cdd3be75b284de07f86a508d629b6f97314 Mon Sep 17 00:00:00 2001 From: yaozm Date: Thu, 11 Jan 2024 15:05:06 +0800 Subject: [PATCH] fix(composer-fixer): remove dry-run option from normalize command - Remove the --dry-run option from the normalize command in the `normalizeComposerJsonFile` method. - This change was made to avoid unnecessary dry-run output when running the `composer-fixer` script. --- composer-fixer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer-fixer b/composer-fixer index 61de55c..b806d0c 100755 --- a/composer-fixer +++ b/composer-fixer @@ -111,7 +111,7 @@ require __DIR__.'/vendor/autoload.php'; private function normalizeComposerJsonFile(): self { - $this->createAndMustRunProcess("{$this->findComposerBinary()} normalize --dry-run --diff --ansi -v"); + $this->createAndMustRunProcess("{$this->findComposerBinary()} normalize --diff --ansi -v"); return $this; }