HummingBirdAnimeClient/console

31 lines
814 B
Plaintext
Raw Normal View History

#!/usr/bin/env php
2016-12-20 12:58:37 -05:00
<?php declare(strict_types=1);
// Set up autoloader for third-party dependencies
require_once __DIR__ . '/vendor/autoload.php';
use Aviat\AnimeClient\Command;
$_SERVER['HTTP_HOST'] = 'localhost';
2017-04-17 16:13:36 -04:00
// -----------------------------------------------------------------------------
// Start console script
2017-04-17 16:13:36 -04:00
// -----------------------------------------------------------------------------
try
{
(new \ConsoleKit\Console([
'cache:clear' => Command\CacheClear::class,
'cache:prime' => Command\CachePrime::class,
'lists:sync' => Command\SyncKitsuWithMal::class,
'cache-prime' => Command\CachePrime::class,
'cache-clear' => Command\CacheClear::class,
'clear-cache' => Command\CacheClear::class,
'sync-lists' => Command\SyncKitsuWithMal::class,
]))->run();
}
catch (\Exception $e)
{
}