This is a simple package that includes some of the missing Laravel artisan command into Lumen.
You can install the package via composer:
composer require raditzfarhan/lumen-command-generator
Edit the bootstrap/app.php
file and add the following line to register the service provider:
...
$app->register(RaditzFarhan\LumenCommandGenerator\ServiceProvider::class);
...
make:command Create a new Artisan command
make:controller Create a new controller class
make:event Create a new event class
make:job Create a new job class
make:listener Create a new event listener class
make:middleware Create a new middleware class
make:model Create a new Eloquent model class
make:observer Create a new observer class
make:provider Create a new service provider class
make:resource Create a new resource
make:rule Create a new validation rule
route:list List all registered routes
storage:link Create the symbolic links configured for the application
Please see the changelog for more information on what has changed recently.
MIT. Please see the license file for more information.