first commit

This commit is contained in:
2022-12-29 22:25:38 +01:00
commit 8d6e97ff86
17 changed files with 1746 additions and 0 deletions

11
bootstrap.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
require 'vendor/autoload.php';
use Dotenv\Dotenv;
use Src\System\DatabaseConnector;
$dotenv = new DotEnv(__DIR__);
$dotenv->load();
$dbConnection = (new DatabaseConnector())->getConnection();