14 lines
212 B
PHP
14 lines
212 B
PHP
<?php
|
|
|
|
$loader = require __DIR__ . '/../vendor/autoload.php';
|
|
if (!$loader) {
|
|
die(<<<'EOT'
|
|
You must set up the project dependencies, run the following command:
|
|
composer install
|
|
EOT
|
|
);
|
|
}
|
|
|
|
return $loader;
|
|
|