TelegramApiServer/bootstrap.php
2019-01-21 22:37:24 +03:00

15 lines
494 B
PHP

<?php
//Check if autoload has been already loaded (in case plugin installed in existing project)
$root = __DIR__;
if (!class_exists('TelegramSwooleClient')) {
if (!file_exists($root . '/vendor/autoload.php')) {
$root = __DIR__ . '/../../..';
}
require $root . '/vendor/autoload.php';
chdir($root);
}
//Check if root env file hash been loaded (in case plugin installed in existing project)
if (!getenv('SWOOLE_SERVER_ADDRESS')){
(new Dotenv\Dotenv($root))->load();
}