aboutsummaryrefslogtreecommitdiffstats
path: root/src/public/index.php
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-03-21 20:50:43 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-03-21 20:50:43 +0100
commitd1ef15fa39935bfa0420c5ac2b8c269e294c9a6d (patch)
tree618158449863123f6b9527b9db6183f8c3ce5c91 /src/public/index.php
downloadcamagru-d1ef15fa39935bfa0420c5ac2b8c269e294c9a6d.tar.gz
camagru-d1ef15fa39935bfa0420c5ac2b8c269e294c9a6d.zip
Initial project scaffold
Set up MVC architecture with front controller, router, autoloader, database singleton, and Docker Compose stack (Nginx + PHP-FPM + MariaDB). Includes DB schema, responsive layout, dev tooling (php-cs-fixer, parallel-lint), and documentation.
Diffstat (limited to 'src/public/index.php')
-rw-r--r--src/public/index.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/public/index.php b/src/public/index.php
new file mode 100644
index 0000000..2709bc0
--- /dev/null
+++ b/src/public/index.php
@@ -0,0 +1,11 @@
+<?php
+
+// Front controller: single entry point for all HTTP requests.
+
+declare(strict_types=1);
+
+require_once __DIR__ . '/../app/bootstrap.php';
+
+$router = new \App\Router();
+require_once __DIR__ . '/../config/routes.php';
+$router->dispatch();