This is package to integrate Laravel Create Command with Laravel. It includes a ServiceProvider to register the command.
Require this package using composer.
composer require sirio/laravel-command
Optional: The service provider will automatically get registered. Or you may manually add the service provider in your config/app.php file:
'providers' => [
// ...
Sirio\LaravelCommand\SirioCommandServiceProvide::class,
];