argument('url'); $branch = $this->option('branch'); $tag = $this->option('tag'); $this->info('Installing plugin from '.$url); try { Plugins::install($url, $branch, $tag); } catch (Exception $e) { $this->output->error($e->getMessage()); return; } $this->info('Plugin installed successfully'); } }