map on home

This commit is contained in:
Tykayn 2025-07-05 12:37:01 +02:00 committed by tykayn
parent a5cd69961f
commit 56f62c45bb
14 changed files with 588 additions and 15 deletions

View file

@ -12,6 +12,11 @@ if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
}
// Optimisations pour éviter les timeouts
ini_set('max_execution_time', 300);
ini_set('memory_limit', '512M');
set_time_limit(300);
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {