initial code commit

This commit is contained in:
2024-02-09 20:52:11 -06:00
parent f5d267ea98
commit 532df6b9be
18 changed files with 583 additions and 1 deletions

14
setup.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
use Hpz937\BillReminder\Database\DatabaseSetup;
use Hpz937\BillReminder\Database\SQLite3Database;
// Assuming you have a SQLite database file path
$databaseFile = 'path/to/your/database/file.sqlite';
$db = new SQLite3Database($databaseFile);
$db->connect();
$databaseSetup = new DatabaseSetup($db);
$databaseSetup->setup();
// Continue with the rest of your application setup