You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
917 B
PHTML
38 lines
917 B
PHTML
7 years ago
|
<?php
|
||
|
|
||
|
use Engelsystem\Application;
|
||
|
use Engelsystem\Config\Config;
|
||
|
use Engelsystem\Exceptions\Handler;
|
||
|
use Engelsystem\Exceptions\Handlers\HandlerInterface;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Include the autoloader
|
||
|
*/
|
||
|
require_once __DIR__ . '/autoload.php';
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Initialize and bootstrap the application
|
||
|
*/
|
||
|
$app = new Application(realpath(__DIR__ . DIRECTORY_SEPARATOR . '..'));
|
||
|
$appConfig = $app->make(Config::class);
|
||
|
$appConfig->set(require config_path('app.php'));
|
||
|
$app->bootstrap($appConfig);
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Configure application
|
||
|
*/
|
||
|
date_default_timezone_set($app->get('config')->get('timezone'));
|
||
|
|
||
|
if (config('environment') == 'development') {
|
||
|
$errorHandler = $app->get('error.handler');
|
||
|
$errorHandler->setEnvironment(Handler::ENV_DEVELOPMENT);
|
||
|
$app->bind(HandlerInterface::class, 'error.handler.development');
|
||
|
ini_set('display_errors', true);
|
||
|
error_reporting(E_ALL);
|
||
|
} else {
|
||
|
ini_set('display_errors', false);
|
||
|
}
|