Initial commit.

This commit is contained in:
2026-05-29 09:28:30 +02:00
parent 17daa347f4
commit bbbe90458a
12 changed files with 151 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
<?php
return [
'name' => 'My Site',
'debug' => false,
];
View File
+16
View File
@@ -0,0 +1,16 @@
<?php
return [
'GET' => [
'/' => 'home.php',
'/about' => 'about.php',
],
/* Some Examples
'POST' => [
'/contact' => 'contact.php',
],
'DELETE' => [
'/api/todo' => 'delete_todo.php',
],
*/
];