2016-07-06 00:25:39 +03:00
|
|
|
<?php
|
2016-07-19 17:50:02 +03:00
|
|
|
use Shlinkio\Shlink\CLI\Command;
|
2016-07-06 00:25:39 +03:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
'cli' => [
|
2016-08-15 00:08:26 +03:00
|
|
|
'locale' => env('CLI_LOCALE', 'en'),
|
2016-07-06 00:25:39 +03:00
|
|
|
'commands' => [
|
2016-08-08 10:36:52 +03:00
|
|
|
Command\Shortcode\GenerateShortcodeCommand::class,
|
|
|
|
Command\Shortcode\ResolveUrlCommand::class,
|
|
|
|
Command\Shortcode\ListShortcodesCommand::class,
|
|
|
|
Command\Shortcode\GetVisitsCommand::class,
|
2016-08-18 13:21:26 +03:00
|
|
|
Command\Shortcode\GeneratePreviewCommand::class,
|
2016-08-08 10:38:50 +03:00
|
|
|
Command\Visit\ProcessVisitsCommand::class,
|
2016-08-01 22:11:42 +03:00
|
|
|
Command\Config\GenerateCharsetCommand::class,
|
2016-08-07 21:30:19 +03:00
|
|
|
Command\Config\GenerateSecretCommand::class,
|
2016-08-06 19:07:48 +03:00
|
|
|
Command\Api\GenerateKeyCommand::class,
|
2016-08-06 19:26:07 +03:00
|
|
|
Command\Api\DisableKeyCommand::class,
|
2016-08-06 19:50:50 +03:00
|
|
|
Command\Api\ListKeysCommand::class,
|
2017-07-08 14:17:46 +03:00
|
|
|
Command\Tag\ListTagsCommand::class,
|
2017-07-16 10:09:11 +03:00
|
|
|
Command\Tag\CreateTagCommand::class,
|
2016-07-06 00:25:39 +03:00
|
|
|
]
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|