phpldapadmin/public/index.php

18 lines
468 B
PHP
Raw Normal View History

2019-05-14 17:52:49 +10:00
<?php
use Illuminate\Http\Request;
2019-05-14 17:52:49 +10:00
define('LARAVEL_START', microtime(true));
// Determine if the application is in maintenance mode...
2023-01-27 21:35:00 +11:00
if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
require $maintenance;
}
2019-05-14 17:52:49 +10:00
// Register the Composer autoloader...
require __DIR__.'/../vendor/autoload.php';
2019-05-14 17:52:49 +10:00
// Bootstrap Laravel and handle the request...
(require_once __DIR__.'/../bootstrap/app.php')
->handleRequest(Request::capture());