<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
ini_set('date.timezone', 'Europe/Madrid');
ini_set('upload_max_filesize', '20M');
ini_set('post_max_size', '20M');
ini_set('gc_maxlifetime', 14400);
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};