initial commit

This commit is contained in:
greggy
2025-10-06 23:10:59 +02:00
commit ad46abd2ba
62 changed files with 4332 additions and 0 deletions

11
bootstrap.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
// bootstrap.php - Haupt-Bootstrap-Datei für Doctrine
use Doctrine\ORM\EntityManager;
// EntityManager laden
$entityManager = require_once __DIR__ . '/doctrine-config.php';
// Nun kann $entityManager in anderen Dateien verwendet werden:
// require_once 'bootstrap.php';
// $repository = $entityManager->getRepository(Entity\YourEntity::class);