19 lines
345 B
PHP
19 lines
345 B
PHP
<?php
|
|
|
|
/**
|
|
* Find the auto loader file
|
|
*/
|
|
$files = [
|
|
__DIR__ . '/../../../../vendor/autoload.php',
|
|
__DIR__ . '/../../../vendor/autoload.php',
|
|
__DIR__ . '/../../vendor/autoload.php',
|
|
__DIR__ . '/../vendor/autoload.php',
|
|
];
|
|
|
|
foreach ($files as $file) {
|
|
if (file_exists($file)) {
|
|
require $file;
|
|
break;
|
|
}
|
|
}
|