LaravelTest
17 строк · 468.0 Байт
1<?php
2
3use Illuminate\Http\Request;
4
5define('LARAVEL_START', microtime(true));
6
7// Determine if the application is in maintenance mode...
8if (file_exists($maintenance = __DIR__.'/../storage/framework/maintenance.php')) {
9require $maintenance;
10}
11
12// Register the Composer autoloader...
13require __DIR__.'/../vendor/autoload.php';
14
15// Bootstrap Laravel and handle the request...
16(require_once __DIR__.'/../bootstrap/app.php')
17->handleRequest(Request::capture());
18