chandler/public/index.php
2022-01-01 19:28:47 +01:00

12 lines
291 B
PHP

<?php
declare(strict_types = 1);
require_once(dirname(__DIR__) . "/vendor/autoload.php");
define("CHANDLER_ROOT", dirname(__DIR__));
define("CHANDLER_ROOT_CONF", yaml_parse_file(CHANDLER_ROOT . "/chandler.yml"));
$bootstrap = require("../chandler/Bootstrap.php");
$bootstrap->ignite();