15 lines
351 B
PHP
15 lines
351 B
PHP
<?php
|
|
|
|
use Engelsystem\Application;
|
|
use Engelsystem\Config\Config;
|
|
|
|
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);
|