Structuring the framework

This commit is contained in:
Jordy van Zeeland 2024-08-15 09:10:19 +02:00
parent f8fe1a835c
commit ebbdb40cd3
8 changed files with 20 additions and 0 deletions

1
README.md Normal file
View File

@ -0,0 +1 @@
# Sealandia Framework

10
composer.json Normal file
View File

@ -0,0 +1,10 @@
{
"autoload": {
"psr-4": {
"sealandia\\": "./"
}
},
"require": {
"php": ">=8.0"
}
}

9
index.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace sealandia;
session_start();
require_once __DIR__ . '/vendor/autoload.php';
?>

0
routes/routes.php Normal file
View File