Add webapp packages

This commit is contained in:
jgetu
2025-10-22 08:23:06 +02:00
parent 088e6b8485
commit f1c21830ea
42 changed files with 8397 additions and 5 deletions

13
tests/bootstrap.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
use Symfony\Component\Dotenv\Dotenv;
require dirname(__DIR__).'/vendor/autoload.php';
if (method_exists(Dotenv::class, 'bootEnv')) {
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
}
if ($_SERVER['APP_DEBUG']) {
umask(0000);
}