#!/usr/bin/env php dispatch('app.bootstrap', new Event); $application = new Application('Kanboard', APP_VERSION); $application->add(new TaskOverdueNotificationCommand($container)); $application->add(new SubtaskExportCommand($container)); $application->add(new TaskExportCommand($container)); $application->add(new ProjectDailyStatsCalculationCommand($container)); $application->add(new ProjectDailyColumnStatsExportCommand($container)); $application->add(new TransitionExportCommand($container)); $application->add(new LocaleSyncCommand($container)); $application->add(new LocaleComparatorCommand($container)); $application->add(new TaskTriggerCommand($container)); $application->add(new CronjobCommand($container)); $application->add(new ResetPasswordCommand($container)); $application->add(new ResetTwoFactorCommand($container)); $application->add(new PluginUpgradeCommand($container)); $application->add(new PluginInstallCommand($container)); $application->add(new PluginUninstallCommand($container)); $application->run(); } catch (Exception $e) { echo $e->getMessage().PHP_EOL; exit(255); }