Composer separat

This commit is contained in:
2026-02-24 00:14:35 +01:00
parent 2641a13d09
commit 4e3f90c248
3 changed files with 1 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ declare(strict_types=1);
require_once __DIR__ . '/../config/fileload.php'; require_once __DIR__ . '/../config/fileload.php';
// 1. Composer Autoload (Falls nicht schon im Webserver-Setup enthalten) // 1. Composer Autoload (Falls nicht schon im Webserver-Setup enthalten)
$composerAutoload = __DIR__ . '/../vendor/autoload.php'; $composerAutoload = __DIR__ . '/../composer/vendor/autoload.php';
if (is_file($composerAutoload)) { if (is_file($composerAutoload)) {
require_once $composerAutoload; require_once $composerAutoload;
} }