After installation, register dot-cli
in your project by adding the below line to your configuration aggregator (usually: config/config.php
):
Dot\Cli\ConfigProvider::class,
Locate file bin/cli.php
in this package, then copy it to your application's bin/
directory.
This is the bootstrap file you will use to execute your commands with.
Locate in this package the following file config/autoload/cli.global.php
then copy it to your application's config/autoload/
directory.
This is the config file you will add your commands under the commands
key, as in the following example:
'commands' => [
DemoCommand::getDefaultName() => DemoCommand::class,
ExampleCommand::getDefaultName() => ExampleCommand::class,
],