Skip to content

Commit

Permalink
Minor standards fix
Browse files Browse the repository at this point in the history
  • Loading branch information
billtomczak committed Jun 10, 2022
1 parent aa0b294 commit 3fb6212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/StandardsFixesTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ protected function updateComposer(string $composerPath)
}

if (preg_match('#"name"\s*:\s*"(.*)"#', $composer, $match)) {
$fixed = str_replace($match[1], strtolower($match[1]), $match[0]);
$fixed = str_replace($match[1], strtolower($match[1]), $match[0]);
$composer = str_replace($match[0], $fixed, $composer);
}

Expand Down

0 comments on commit 3fb6212

Please sign in to comment.