Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion src/Command/RepatchCommand.php
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use Composer\DependencyResolver\Operation\UninstallOperation;
use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;

class RepatchCommand extends PatchesCommandBase
Expand All @@ -15,6 +16,12 @@ protected function configure(): void
{
$this->setName('patches-repatch');
$this->setDescription('Delete, re-download, and re-patch each dependency with any patches defined.');
$this->addOption(
'install-options',
'o',
InputOption::VALUE_REQUIRED,
'Allows you to set the options for the composer install.'
);
$this->setAliases(['prp']);
}

Expand Down Expand Up @@ -54,7 +61,17 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$this->requireComposer()->getLoop()->wait($promises);
}

$input = new ArrayInput(['command' => 'install']);
$parameters = ['command' => 'install'];

if (!empty($input->getOption('install-options'))) {
$installOptions = explode(' ', $input->getOption('install-options'));

foreach ($installOptions as $installOption) {
$parameters[$installOption] = true;
}
}

$input = new ArrayInput($parameters);
$application = $this->getApplication();
$application->setAutoExit(false);
$application->run($input, $output);
Expand Down