20-02-2026

This commit is contained in:
Kevin Adametz 2026-02-20 17:57:50 +01:00
parent 854ce02bf6
commit 4d6b4930b2
128 changed files with 18247 additions and 2093 deletions

9
tests/bootstrap.php Normal file
View file

@ -0,0 +1,9 @@
<?php
require __DIR__.'/../vendor/autoload.php';
// Config-Cache entfernen, damit phpunit.xml-Umgebungsvariablen (SQLite) greifen
$configCache = __DIR__.'/../bootstrap/cache/config.php';
if (file_exists($configCache)) {
unlink($configCache);
}