Initial commit
All checks were successful
PHP Composer / build (push) Successful in 10m28s

This commit is contained in:
Armel van Ravels
2024-08-30 20:29:39 +02:00
commit bb1d280731
38 changed files with 7226 additions and 0 deletions

9
public/index.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
use App\Http\Kernel;
require __DIR__.'/../vendor/autoload.php';
app(Kernel::class)->run();