mirror of
https://github.com/php-fig/log-test.git
synced 2026-03-23 22:52:14 +01:00
9 lines
217 B
PHP
9 lines
217 B
PHP
<?php
|
|
|
|
call_user_func_array(function ($rootDir) {
|
|
$autoload = "$rootDir/vendor/autoload.php";
|
|
if (file_exists($autoload)) {
|
|
require_once $autoload;
|
|
}
|
|
}, array(dirname(dirname(dirname(__DIR__)))));
|