first commit

This commit is contained in:
julien
2026-03-16 01:47:07 +01:00
commit 8f7e61bda0
185 changed files with 27731 additions and 0 deletions

15
public/index.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
require __DIR__.'/../vendor/autoload.php';
use App\Shared\Bootstrap;
session_start([
'cookie_secure' => !empty($_SERVER['HTTPS']),
'cookie_httponly' => true,
'cookie_samesite' => 'Lax',
]);
$app = Bootstrap::create()->initialize();
$app->run();