Skip to content

Commit

Permalink
✨ limited install to modules
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Oct 13, 2021
1 parent c85f13a commit 40a156d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ protected function execute(InputInterface $input, OutputInterface $output)

$output->writeln("<info>Installing $package...</info>");
$composer = $this->findComposer();
$process = Process::fromShellCommandline("$composer require $package $version", null, null, null, null);
$process = Process::fromShellCommandline("$composer require leafs/$package $version", null, null, null, null);

$process->run(function ($type, $line) use ($output) {
$output->write($line);
Expand Down

0 comments on commit 40a156d

Please sign in to comment.