This is a collection of Laravel Artisan commands created to help everyone in their development work.
superhelio/commands is a Laravel package for this is a collection of laravel artisan commands created to help everyone in their development work..
It currently has 1 GitHub stars and 17 downloads on Packagist (latest version 1.2.0).
Install it with composer require superhelio/commands.
Discover more Laravel packages by superhelio
or browse all Laravel packages to compare alternatives.
Last updated
This is a collection of Laravel Artisan commands created to help everyone in their development work. We try to keep these as useful as possible.
This package requires PHP 7.3 or later. The composer.lock file has been generated with PHP v7.4.13.
$ composer require superhelio/commands --dev
You'll only want to use these generators for local development, so you don't want to update the production providers array in config/app.php. Instead, add the provider in app/Providers/AppServiceProvider.php, like so:
public function register()
{
if ($this->app->environment() === 'local') {
$this->app->register('SuperHelio\Commands\ServiceProvider');
}
}
php artisan superhelio:gozerphp artisan superhelio:reloadPlease see CHANGELOG for more information what has changed recently.
$ composer test
If you discover any security related issues, please contact SuperHelio.
The MIT License (MIT). Please see License File for more information.