Files
miniweb/public/index.php
2023-11-14 08:58:44 +01:00

18 lines
338 B
PHP

<?php
/**
* Loading path constant
*/
define('DS', DIRECTORY_SEPARATOR);
define('ROOT', dirname(dirname(__FILE__)));
/**
* Enable autoload
*/
require_once ROOT . DS . 'vendor'. DS . 'autoload.php';
// start application
$app = new \Kletellier\MiniWeb\Core\Kernel\Application();
// Handle Url and render Response
$app->handle();