refactor(dynamic): enhance event recording across brokers, improve SQL migration handling for frameworks, update runtime dependency management, and add test coverage

This commit is contained in:
elipeter 2026-05-27 08:23:48 -05:00
parent 9bf085ee48
commit 0903231189
9 changed files with 225 additions and 9 deletions

View file

@ -3091,6 +3091,11 @@ if ((!$payload || $payload === '') && is_string($_b64) && $_b64 !== '') {{
if ($decoded !== false) $payload = $decoded;
}}
$autoload = __DIR__ . '/vendor/autoload.php';
if (is_file($autoload)) {{
require_once $autoload;
}}
try {{
require_once __DIR__ . '/entry.php';
}} catch (Throwable $e) {{