2016-07-05 16:25:39 -05:00
|
|
|
<?php
|
2017-10-12 03:13:20 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2016-07-19 09:50:02 -05:00
|
|
|
use Shlinkio\Shlink\CLI\Command;
|
2017-07-16 02:28:40 -05:00
|
|
|
use Shlinkio\Shlink\Common;
|
2016-07-05 16:25:39 -05:00
|
|
|
|
|
|
|
return [
|
|
|
|
|
|
|
|
'cli' => [
|
2017-07-16 02:28:40 -05:00
|
|
|
'locale' => Common\env('CLI_LOCALE', 'en'),
|
2016-07-05 16:25:39 -05:00
|
|
|
'commands' => [
|
2017-12-27 08:37:26 -06:00
|
|
|
Command\Shortcode\GenerateShortcodeCommand::NAME => Command\Shortcode\GenerateShortcodeCommand::class,
|
|
|
|
Command\Shortcode\ResolveUrlCommand::NAME => Command\Shortcode\ResolveUrlCommand::class,
|
|
|
|
Command\Shortcode\ListShortcodesCommand::NAME => Command\Shortcode\ListShortcodesCommand::class,
|
|
|
|
Command\Shortcode\GetVisitsCommand::NAME => Command\Shortcode\GetVisitsCommand::class,
|
|
|
|
Command\Shortcode\GeneratePreviewCommand::NAME => Command\Shortcode\GeneratePreviewCommand::class,
|
|
|
|
|
|
|
|
Command\Visit\ProcessVisitsCommand::NAME => Command\Visit\ProcessVisitsCommand::class,
|
|
|
|
|
|
|
|
Command\Config\GenerateCharsetCommand::NAME => Command\Config\GenerateCharsetCommand::class,
|
|
|
|
Command\Config\GenerateSecretCommand::NAME => Command\Config\GenerateSecretCommand::class,
|
|
|
|
|
|
|
|
Command\Api\GenerateKeyCommand::NAME => Command\Api\GenerateKeyCommand::class,
|
|
|
|
Command\Api\DisableKeyCommand::NAME => Command\Api\DisableKeyCommand::class,
|
|
|
|
Command\Api\ListKeysCommand::NAME => Command\Api\ListKeysCommand::class,
|
|
|
|
|
|
|
|
Command\Tag\ListTagsCommand::NAME => Command\Tag\ListTagsCommand::class,
|
|
|
|
Command\Tag\CreateTagCommand::NAME => Command\Tag\CreateTagCommand::class,
|
|
|
|
Command\Tag\RenameTagCommand::NAME => Command\Tag\RenameTagCommand::class,
|
|
|
|
Command\Tag\DeleteTagsCommand::NAME => Command\Tag\DeleteTagsCommand::class,
|
2017-10-12 03:13:20 -05:00
|
|
|
],
|
2016-07-05 16:25:39 -05:00
|
|
|
],
|
|
|
|
|
|
|
|
];
|