raditzfarhan / lumen-command-generator
This is a simple package that includes some of the missing Laravel artisan command into Lumen.
Installs: 2 525
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^7.2.5|^8.0
- illuminate/console: ^6.0|^7.0|^8.0
- illuminate/support: ^6.0|^7.0|^8.0
This package is auto-updated.
Last update: 2024-11-15 04:23:57 UTC
README
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.