15 lines
258 B
PHP
15 lines
258 B
PHP
|
<?php
|
||
|
|
||
|
// Autoload
|
||
|
$files = [
|
||
|
__DIR__ . '/../../autoload.php',
|
||
|
__DIR__ . '/../vendor/autoload.php',
|
||
|
__DIR__ . '/vendor/autoload.php',
|
||
|
];
|
||
|
foreach ($files as $file) {
|
||
|
if (file_exists($file)) {
|
||
|
require_once $file;
|
||
|
break;
|
||
|
}
|
||
|
}
|