Adds public directory and index.php
ogboot/pipeline/tag This commit looks good Details

main
Luis Gerardo Romero Garcia 2025-03-26 16:29:41 +01:00
parent c60c14ea97
commit 63df8ff854
1 changed files with 9 additions and 0 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']);
};