Creating backend structure

This commit is contained in:
2022-01-09 10:52:46 +00:00
parent ffb790aae4
commit 08a83f72b9
18 changed files with 2994 additions and 1 deletions

View File

@ -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']);
};