PHP code example of larrymckuydee / artisan-command-extra
1. Go to this page and download the library: Download larrymckuydee/artisan-command-extra library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
larrymckuydee / artisan-command-extra example snippets
use ArtisanCommandExtra\Console\Migrations as Migrations;
...
class Kernel extends ConsoleKernel
{
...
protected $command = [
Migrations\CreateCommand::class,
Migrations\DropCommand::class
];
...
}