From e281fc7ddf0fd20cb0d2b04b22b5f573524d5cd5 Mon Sep 17 00:00:00 2001 From: Buster Neece Date: Thu, 25 Apr 2024 07:09:11 -0500 Subject: [PATCH] Add "uninstall" as alias to "remove". --- src/Composer/Command/RemoveCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/RemoveCommand.php b/src/Composer/Command/RemoveCommand.php index b40fb774e45a..9803190a4760 100644 --- a/src/Composer/Command/RemoveCommand.php +++ b/src/Composer/Command/RemoveCommand.php @@ -43,7 +43,7 @@ protected function configure() { $this ->setName('remove') - ->setAliases(['rm']) + ->setAliases(['rm', 'uninstall']) ->setDescription('Removes a package from the require or require-dev') ->setDefinition([ new InputArgument('packages', InputArgument::IS_ARRAY, 'Packages that should be removed.', null, $this->suggestRootRequirement()),