raditzfarhan/lumen-command-generator
This is a simple package that includes some of the missing Laravel artisan command into Lumen.
2,545
4
| Install | |
|---|---|
composer require raditzfarhan/lumen-command-generator |
|
| Latest Version: | v1.0.7 |
| PHP: | ^7.2.5|^8.0 |
| License: | MIT |
| Last Updated: | Oct 14, 2021 |
| Links: | GitHub · Packagist |
Maintainer: raditzfarhan
Lumen Command Generator
This is a simple package that includes some of the missing Laravel artisan command into Lumen.
Installation
You can install the package via composer:
composer require raditzfarhan/lumen-command-generator
Configuration
Edit the bootstrap/app.php file and add the following line to register the service provider:
...
$app->register(RaditzFarhan\LumenCommandGenerator\ServiceProvider::class);
...
Available Commands
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
Change log
Please see the changelog for more information on what has changed recently.
Credits
License
MIT. Please see the license file for more information.