You are viewing documentation for an outdated version. It is no longer supported!
Setup
Register Service Provider
Register ConsoleServiceProvider inside your configs/app.php.
return [
    // ... previous not shown ... //
    /*
    |--------------------------------------------------------------------------
    | Autoloaded Service Providers
    |--------------------------------------------------------------------------
    */
    'providers' => [
        \Aedart\Console\Providers\ConsoleServiceProvider::class
        // ... remaining services not shown ... //
    ],
];
Publish Assets
Run vendor:publish to publish this package's assets.
php artisan vendor:publish
The following configuration files should be added inside your configs/ directory:
- commands.php
- schedule.php
Publish Assets for Athenaeum Core Application
If you are using the Athenaeum Core Application, then run the following command to publish assets:
php {your-cli-app} vendor:publish-all
