Source
{{{
error_reporting(-1);
ini_set('display_errors', 1);
}}}Welcome to Lithium 3! This front-controller file is the gateway to your application. It is responsible for intercepting requests, and handing them off to the Dispatcher for processing.
If you're sharing a single Lithium core install or other libraries among multiple applications, you may need to manually set things like LITHIUM_LIBRARY_PATH. You can do that in app/config/bootstrap.php, which is loaded below:
Source
{{{
require dirname(__DIR__) . '/config/bootstrap.php';
}}}Dispatch a new request with the default settings.
Source
{{{
echo lithium\action\Dispatcher::run(new \lithium\action\Request());
}}}