Level 88
You can create your own commands in Lumen, since you want a Laravel command you can simply copy it from the Laravel framework into your commands directory in your Lumen project.
- https://github.com/laravel/framework/blob/7f62d81acb2001faafb21a32544464ebfc92476c/src/Illuminate/Foundation/Console/ModelMakeCommand.php
- https://github.com/laravel/framework/blob/7f62d81acb2001faafb21a32544464ebfc92476c/src/Illuminate/Routing/Console/ControllerMakeCommand.php
Note: you might need to update some stuff, but these are the files to look for
2 likes