Grundlegender Aufbau erstellt.

This commit is contained in:
2021-03-25 21:48:25 +01:00
parent a93c767142
commit 5c49997eba
7 changed files with 120 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
require_once __DIR__ . '/../vendor/autoload.php';
use Slim\Factory\AppFactory;
$app = AppFactory::create();
$app->get('/', 'TorstenHettstedt\TimekeepingApi\Controller\HelloWorldController:read');
$app->addErrorMiddleware(true, true, true);
$app->run();