16 lines
294 B
PHP
16 lines
294 B
PHP
<?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();
|