10 lines
207 B
PHP
10 lines
207 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; |