From 6367054487368c92741bfd1dc7c70c52aea9ee87 Mon Sep 17 00:00:00 2001 From: slawkens Date: Mon, 3 Nov 2025 21:06:27 +0100 Subject: [PATCH] Add plugin:remove + plugin:delete as alias for plugin:uninstall --- system/src/Commands/PluginUninstallCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/system/src/Commands/PluginUninstallCommand.php b/system/src/Commands/PluginUninstallCommand.php index a5cc00f5..fb5982d4 100644 --- a/system/src/Commands/PluginUninstallCommand.php +++ b/system/src/Commands/PluginUninstallCommand.php @@ -13,6 +13,7 @@ class PluginUninstallCommand extends Command protected function configure(): void { $this->setName('plugin:uninstall') + ->setAliases(['plugin:remove', 'plugin:delete']) ->setDescription('This command uninstalls plugin') ->addArgument('plugin-name', InputArgument::REQUIRED, 'Plugin that you want to uninstall'); }