#!/usr/bin/env php
<?php
defined('APPLICATION_ROOT')
    || define('APPLICATION_ROOT', realpath(dirname(__FILE__) . '/..'));

set_include_path(implode(PATH_SEPARATOR, array(
    APPLICATION_ROOT . '/lib',
    get_include_path(),
)));

require 'Core/Console/Application.php';
$application = Core_Console_Application::getInstance();
echo $application->run();
