php-hotfix/bin/bootstrap.php
2016-07-21 03:08:06 +02:00

14 lines
297 B
PHP

<?php
define("APP_VERSION", "0.1-pre");
require_once __DIR__."/../vendor/autoload.php";
require_once __DIR__."/systemtest.php";
if (file_exists(__DIR__."/banner.php"))
require_once __DIR__."/banner.php";
use NoccyLabs\Hotfix\HotfixApplication;
$app = new HotfixApplication();
$app->run();