API Base App

This commit is contained in:
2022-11-09 15:20:04 -03:00
parent 1cf5a1f094
commit 0fbf73b3fd
19 changed files with 267 additions and 0 deletions

8
api/public/index.php Normal file
View File

@ -0,0 +1,8 @@
<?php
$app = require_once implode(DIRECTORY_SEPARATOR, [
dirname(__FILE__, 2),
'setup',
'app.php'
]);
#$app->getContainer()->get(\Psr\Log\LoggerInterface::class)->debug(var_export($app, true));
$app->run();