#1 - project skeleton

This commit is contained in:
Adrian Hopek
2022-01-10 12:19:04 +01:00
parent 683b2367ea
commit d4f522f9d8
90 changed files with 25978 additions and 1 deletions

24
public/index.php Normal file
View File

@@ -0,0 +1,24 @@
<?php
declare(strict_types=1);
use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;
define("LARAVEL_START", microtime(true));
if (file_exists(__DIR__ . "/../storage/framework/maintenance.php")) {
require __DIR__ . "/../storage/framework/maintenance.php";
}
require __DIR__ . "/../vendor/autoload.php";
$app = require_once __DIR__ . "/../bootstrap/app.php";
$kernel = $app->make(Kernel::class);
$response = $kernel->handle(
$request = Request::capture(),
)->send();
$kernel->terminate($request, $response);