mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 03:33:59 +00:00
0509cbb2fb414c1daff22d51f7b11695b7f520ac
Laravel Commands by SuperHelio
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.
Install
Step 1: Install Through Composer
$ composer require superhelio/commands --dev
Step 2: Add the Service Provider
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');
}
}
Usage
- superhelio:reload
- Reset database, migrate and seed
php artisan superhelio:reload
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please contact SuperHelio.
Credits
License
The MIT License (MIT). Please see License File for more information.
Description
Languages
PHP
100%