raditzfarhan/lumen-command-generator

This is a simple package that includes some of the missing Laravel artisan command into Lumen.

v1.0.7 2021-10-14 21:56 UTC

This package is auto-updated.

Last update: 2024-05-15 03:23:17 UTC


README

68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f72616469747a66617268616e2f696d6167652f75706c6f61642f76313538363837393735302f6c756d656e2d636f6d6d616e642d67656e657261746f725f61716c69776e2e737667

License Total Downloads Latest Version styleci

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.