Duplicate 5.3 recipe into 5.4

This commit is contained in:
Alessandro Lai
2021-07-12 09:07:27 +02:00
parent 055035503a
commit 6b3d5bcebd
10 changed files with 161 additions and 0 deletions
@@ -0,0 +1,9 @@
<?php
use App\Kernel;
require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};