Skip to content

Commit 3e2d3ae

Browse files
committed
Laravel 7 boot up
1 parent e289422 commit 3e2d3ae

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/boot/laravel-7.x.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
define('LARAVEL_START', microtime(true));
4+
5+
require __DIR__.'/../vendor/autoload.php';
6+
7+
$app = require_once __DIR__.'/../bootstrap/app.php';
8+
9+
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
10+
11+
$response = $kernel->handle(
12+
$request = Illuminate\Http\Request::capture()
13+
);

0 commit comments

Comments
 (0)