11 lines
211 B
PHP
11 lines
211 B
PHP
<?php
|
|
$filename = implode(DIRECTORY_SEPARATOR, [
|
|
dirname(__DIR__),
|
|
'vendor',
|
|
'autoload.php'
|
|
]);
|
|
if (!file_exists($filename)) {
|
|
throw new Exception('Missing composer install.');
|
|
}
|
|
include_once $filename;
|