larrymckuydee/artisan-command-extra

There is no license information available for the latest version (v1.0.1) of this package.

Provide more commands for more wholesome artisan experience

v1.0.1 2019-10-01 10:05 UTC

This package is auto-updated.

Last update: 2024-05-07 02:07:47 UTC


README

Artisan extra command aims to provide more command and automation to laravel php artisan to help speed up development speed for all laravel developers.

How it works ?

Basically, it just extends from laravel Command class

Installation

Install via composer composer require larrymckuydee/artisan-command-extra

Include into app/Console/Kernel.php

Database Migrations

use ArtisanCommandExtra\Console\Migrations as Migrations;

...

class Kernel extends ConsoleKernel
{
...
    protected $command = [
        Migrations\CreateCommand::class,
	Migrations\DropCommand::class
    ];
...
}

Authors

  • LarryMckuydee