Skip to content

Commit

Permalink
Use larastan/larastan instead of nunomaduro/larastan
Browse files Browse the repository at this point in the history
  • Loading branch information
talvbansal authored Apr 23, 2024
1 parent 240b515 commit 867fde9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/GenerateGitlabCiConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ private function collectConfigItems() : self
if ($this->shouldLintPhpCode === 'Yes') {
$this->phpLinter = $this->choice('Use laravel pint or FriendsOfPHP/PHP-CS-Fixer with Laravel Shift\'s rules', ['laravel-pint', 'php-cs-fixer'], 0);
}
$this->laraStan = $this->choice('Use nunomaduro/larastan for static analysis', ['Yes', 'No'], 0);
$this->laraStan = $this->choice('Use larastan/larastan for static analysis', ['Yes', 'No'], 0);
$this->phpunit = $this->choice('Run phpunit tests', ['Yes', 'No'], 0);

return $this;
Expand Down Expand Up @@ -136,7 +136,7 @@ private function installDependencies() : self
}

if ($this->laraStan === 'Yes') {
$this->composerInstall('nunomaduro/larastan --dev');
$this->composerInstall('larastan/larastan --dev');
$this->copyStub('phpstan.neon');
}

Expand Down

0 comments on commit 867fde9

Please sign in to comment.