Esempio n. 1
0
<?php

/**
 * APIne Framework Main Execution
 * This script runs basic environment setup and launches the application
 *
 * @author Tommy Teasdale <*****@*****.**>
 * @license MIT
 * @copyright 2015 Tommy Teasdale
 */
ini_set('display_errors', -1);
require_once '.{apine}/Autoloader.php';
$loader = new Apine\Autoloader();
$loader->register();
$apine = new Apine\Application\Application();
$apine->set_mode(APINE_MODE_DEVELOPMENT);
$apine->run(APINE_RUNTIME_HYBRID);