array( "$root_dir_path/config.local.yml", ), 'templates' => array( 'static_directories' => array( "$root_dir_path/static" ), ), 'auth' => array( 'enabled' => true, 'methods' => array( '\\MySC\\Auth\\API', ), 'backends' => array( 'db', ), ), 'default' => array( 'auth' => array( 'enabled' => true, 'methods' => array( '\\MySC\\Auth\\API', ), 'auth_token' => array( 'expiration_delay' => 31536000, ), ), ), ), $root_dir_path ); $sentry_span = new SentrySpan('core.init', 'Core initialization'); // Put here your own initialization stuff Db :: init(); API :: init(); require 'views/index.php'; $sentry_span->finish(); # vim: tabstop=2 shiftwidth=2 softtabstop=2 expandtab