Skip to content

Commit

Permalink
Typo fix: allowDevDependnecies to allowDevDependencies (rectorphp#4093)
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul Malik Ikhsan <samsonasik@gmail.com>
  • Loading branch information
samsonasik committed Sep 1, 2020
1 parent db563c6 commit 484f01b
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 484f01b

Please sign in to comment.