Files
miniweb/public/index.php
2023-11-14 12:02:02 +01:00

17 lines
344 B
PHP

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