Skip to content

Commit

Permalink
fix(composer-fixer): remove dry-run option from normalize command
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
guanguans committed Jan 11, 2024
1 parent 954ae35 commit df1d4cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composer-fixer
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit df1d4cd

Please sign in to comment.