Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typo fix: allowDevDependnecies to allowDevDependencies #4093

Merged
merged 1 commit into from
Sep 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions compiler/src/Composer/ComposerJsonManipulator.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private function replacePHPStanWithPHPStanSrc(array $json): array

$json = $this->addDevDependenciesFromPHPStan($json, $phpstanVersion);

return $this->allowDevDependnecies($json);
return $this->allowDevDependencies($json);
}

private function addDevDependenciesFromPHPStan(array $json, string $phpstanVersion): array
Expand All @@ -143,7 +143,7 @@ private function addDevDependenciesFromPHPStan(array $json, string $phpstanVersi
return $json;
}

private function allowDevDependnecies(array $json): array
private function allowDevDependencies(array $json): array
{
$json['minimum-stability'] = 'dev';
$json['prefer-stable'] = true;
Expand Down