@@ -91,7 +91,7 @@ protected function handle(): int
9191 ['title ' => 'Basic Leaf app ' , 'value ' => 'basic ' ],
9292 ['title ' => 'Full-stack MVC app ' , 'value ' => 'mvc ' ],
9393 ['title ' => 'Leaf MVC API app ' , 'value ' => 'api ' ],
94- ['title ' => 'Console app ' , 'value ' => 'console ' ],
94+ ['title ' => 'Console app via Seedling ' , 'value ' => 'console ' ],
9595 ],
9696 ],
9797 ]);
@@ -126,7 +126,7 @@ protected function handle(): int
126126 $ commands [] = "cd \"$ directory \"" ;
127127 $ commands [] = 'composer install --ansi ' ;
128128 } else if ($ this ->projectType === 'console ' ) {
129- $ commands [] = "composer create-project leafs/sprout-app \"$ directory \" --ansi " ;
129+ $ commands [] = "composer create-project leafs/seedling \"$ directory \" --ansi " ;
130130 $ commands [] = "cd \"$ directory \"" ;
131131 } else {
132132 $ commands [] = "composer create-project leafs/mvc \"$ directory \" --ansi " ;
@@ -152,7 +152,7 @@ protected function handle(): int
152152 $ this ->writeln ("\n🚀 Successfully created project " . basename ($ directory ) . "\n" );
153153 $ this ->writeln ('👉 Get started with the following commands: ' );
154154 $ this ->writeln ("\n cd " . basename ($ directory ));
155- $ this ->writeln (" php ./bin/ " . basename ( $ directory ) );
155+ $ this ->writeln (" php leaf greet " );
156156
157157 $ this ->writeln ("\n🍁 Happy gardening! \n" );
158158
0 commit comments