2022-04-27 11:30:43 +02:00

11 lines
201 B
PHP

<?php
$filename = __DIR__ . '/../vendor/autoload.php';
if (!file_exists($filename)) {
echo 'You must first install the vendors using composer.' . PHP_EOL;
exit(1);
}
require_once $filename;