load(ROOT_PATH . "/.env"); set_error_handler("Framework\ErrorHandler::handleError"); set_exception_handler("Framework\ErrorHandler::handleException"); $path = parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH); if ($path === false) { throw new UnexpectedValueException("Malformed URL: {$_SERVER["REQUEST_URI"]}"); } $segments = explode("/", $path); $router = require ROOT_PATH . "/config/routes.php"; $container = require ROOT_PATH . "/config/services.php"; $dispatcher = new Framework\Dispatcher($router, $container); $dispatcher->handle($path);