test_lgq/niucloud/vendor/fastknife/ajcaptcha/test/autoload.php
2024-01-24 17:36:08 +08:00

17 lines
450 B
PHP

<?php
declare(strict_types=1);
(function () {
foreach ([
'vendor/autoload.php',
'../vendor/autoload.php',
'../../vendor/autoload.php',
'../../../vendor/autoload.php',
'../../../../vendor/autoload.php'
] as $file) {
if (is_file($file)) {
/** @noinspection PhpIncludeInspection */
include $file;
}
}
})();