setName(self::NAME); $this->addArgument('package', InputArgument::REQUIRED, 'The Packagist package of the plugin to remove (e.g. mautic/example-plugin)'); parent::configure(); } protected function execute(InputInterface $input, OutputInterface $output): int { $output->writeln('Removing '.$input->getArgument('package').', this might take a while...'); $packageVendorAndName = $input->getArgument('package'); // Just checking the package type so that the user doesn't accidentially removes a core package if (!in_array($packageVendorAndName, $this->composer->getMauticPluginPackages())) { $output->writeln('This package cannot be removed, it must be of type mautic-plugin'); return Command::FAILURE; } $removeResult = $this->composer->remove($packageVendorAndName); if (0 !== $removeResult->exitCode) { $message = 'Error while removing plugin through Composer: '.$removeResult->output; $this->logger->error($message); $output->writeLn($message); return Command::FAILURE; } $output->writeln($input->getArgument('package').' has successfully been removed.'); return Command::SUCCESS; } protected static $defaultDescription = 'Removes a plugin that is currently installed'; }