diff options
Diffstat (limited to 'app/ServiceProvider/CommandProvider.php')
-rw-r--r-- | app/ServiceProvider/CommandProvider.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/ServiceProvider/CommandProvider.php b/app/ServiceProvider/CommandProvider.php index f17ba352..b31162b8 100644 --- a/app/ServiceProvider/CommandProvider.php +++ b/app/ServiceProvider/CommandProvider.php @@ -20,6 +20,7 @@ use Kanboard\Console\TaskExportCommand; use Kanboard\Console\TaskOverdueNotificationCommand; use Kanboard\Console\TaskTriggerCommand; use Kanboard\Console\TransitionExportCommand; +use Kanboard\Console\VersionCommand; use Kanboard\Console\WorkerCommand; use Pimple\Container; use Pimple\ServiceProviderInterface; @@ -61,6 +62,7 @@ class CommandProvider implements ServiceProviderInterface $application->add(new PluginUninstallCommand($container)); $application->add(new DatabaseMigrationCommand($container)); $application->add(new DatabaseVersionCommand($container)); + $application->add(new VersionCommand($container)); $container['cli'] = $application; return $container; |