#!/usr/bin/env php
<?php
date_default_timezone_set('UTC');

set_time_limit(0);

(@include_once __DIR__ . '/../vendor/autoload.php') || @include_once __DIR__ . '/../../../autoload.php';

use Symfony\Component\Console\Application;

$app = new Application('Expose IDS', '0.1');
$app->addCommands(array(
    new \Expose\Console\Command\FilterCommand(),
    new \Expose\Console\Command\ProcessQueueCommand()
));
$app->run();
