15 lines
242 B
PHP
15 lines
242 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
use App\Bootstrap;
|
|
|
|
// Démarrer la session PHP
|
|
session_start();
|
|
|
|
// Initialiser et exécuter l'application
|
|
$app = Bootstrap::create()->initialize();
|
|
$app->run();
|