Files
CLOAK/__code__/whichbrowser/bin/bootstrap.php
T
2026-06-14 18:30:06 +08:00

11 lines
253 B
PHP
Executable File

<?php
$standaloneAutoloader = __DIR__ . '/../vendor/autoload.php';
$packageAutoloader = __DIR__ . '/../../../autoload.php';
if (file_exists($packageAutoloader)) {
require_once $packageAutoloader;
} else {
require_once $standaloneAutoloader;
}