Initial PHP project structure

This commit is contained in:
2022-11-01 18:09:46 -04:00
parent 836d3ecc65
commit 7c793dac88
11 changed files with 1555 additions and 0 deletions

7
src/routes.php Normal file
View File

@ -0,0 +1,7 @@
<?php
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
// index GET route - this page should welcome the user and direct them to the available actions
$app->get('/', '\\BitGoblin\\Overseer\\Controllers\\HomeController:getIndex')->setName('index');