superhelio / commands by ivuorinen

This is a collection of Laravel Artisan commands created to help everyone in their development work.
15
1
3
Package Data
Maintainer Username: ivuorinen
Maintainer Contact: hello@superhelio.com (SuperHelio)
Package Create Date: 2017-02-07
Package Last Update: 2023-02-02
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 15:13:48
Package Statistics
Total Downloads: 15
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

Laravel Commands by SuperHelio

Latest Version on Packagist Software License Build Status Coverage Status Quality Score Total Downloads

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.0 or later. composer.lock has been generated with PHP v7.0.23.

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:gozer
    • Force delete database tables that have your table prefix
    • php artisan superhelio:gozer
  • 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

Security

If you discover any security related issues, please contact SuperHelio.

Credits

License

The MIT License (MIT). Please see License File for more information.