mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
14 lines
419 B
PHP
14 lines
419 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'vendor'.DIRECTORY_SEPARATOR.'autoload.php';
|
|
require __DIR__.DIRECTORY_SEPARATOR.'app.php';
|
|
require_once 'constants.php';
|
|
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'app/Extensions/util/PhpYenc.php';
|
|
|
|
use Dotenv\Dotenv;
|
|
|
|
$dotenv = Dotenv::create(dirname(__DIR__, 1));
|
|
$dotenv->load();
|
|
|
|
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
|