2016-07-05 16:25:39 -05:00
|
|
|
<?php
|
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' => [
|
2016-08-08 02:36:52 -05:00
|
|
|
Command\Shortcode\GenerateShortcodeCommand::class,
|
|
|
|
Command\Shortcode\ResolveUrlCommand::class,
|
|
|
|
Command\Shortcode\ListShortcodesCommand::class,
|
|
|
|
Command\Shortcode\GetVisitsCommand::class,
|
2016-08-18 05:21:26 -05:00
|
|
|
Command\Shortcode\GeneratePreviewCommand::class,
|
2016-08-08 02:38:50 -05:00
|
|
|
Command\Visit\ProcessVisitsCommand::class,
|
2016-08-01 14:11:42 -05:00
|
|
|
Command\Config\GenerateCharsetCommand::class,
|
2016-08-07 13:30:19 -05:00
|
|
|
Command\Config\GenerateSecretCommand::class,
|
2016-08-06 11:07:48 -05:00
|
|
|
Command\Api\GenerateKeyCommand::class,
|
2016-08-06 11:26:07 -05:00
|
|
|
Command\Api\DisableKeyCommand::class,
|
2016-08-06 11:50:50 -05:00
|
|
|
Command\Api\ListKeysCommand::class,
|
2017-07-08 06:17:46 -05:00
|
|
|
Command\Tag\ListTagsCommand::class,
|
2017-07-16 02:09:11 -05:00
|
|
|
Command\Tag\CreateTagCommand::class,
|
2017-07-16 02:24:21 -05:00
|
|
|
Command\Tag\RenameTagCommand::class,
|
2016-07-05 16:25:39 -05:00
|
|
|
]
|
|
|
|
],
|
|
|
|
|
|
|
|
];
|