From b214525d4222ebbe7632a3f3886b0f44147fe35a Mon Sep 17 00:00:00 2001 From: mychidarko Date: Fri, 24 Mar 2023 13:08:34 +0000 Subject: [PATCH] feat: add new as alias to create --- src/CreateCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CreateCommand.php b/src/CreateCommand.php index e74c9ba..28f9212 100644 --- a/src/CreateCommand.php +++ b/src/CreateCommand.php @@ -37,7 +37,7 @@ protected function configure() { $this ->setName('create') - ->setAliases(['init']) + ->setAliases(['init', 'new']) ->setDescription('Create a new Leaf PHP project') ->addArgument('project-name', InputArgument::OPTIONAL, 'The name of the project') ->addOption('basic', null, InputOption::VALUE_NONE, 'Create a raw leaf project')