this repo has no description
1<?php
2
3use Illuminate\Foundation\Application;
4use Illuminate\Http\Request;
5
6define('LARAVEL_START', microtime(true));
7
8// Determine if the application is in maintenance mode...
9if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
10 require $maintenance;
11}
12
13// Register the Composer autoloader...
14require __DIR__.'/../vendor/autoload.php';
15
16// Bootstrap Laravel and handle the request...
17/** @var Application $app */
18$app = require_once __DIR__.'/../bootstrap/app.php';
19
20$app->handleRequest(Request::capture());