Remove custom and use original laravel files

This commit is contained in:
DariusIII
2023-10-04 22:24:30 +02:00
parent 6b123c6b97
commit 77baea70f5
5 changed files with 137 additions and 129 deletions
-15
View File
@@ -1,15 +0,0 @@
<?php
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'vendor'.DIRECTORY_SEPARATOR.'autoload.php';
require __DIR__.DIRECTORY_SEPARATOR.'app.php';
require_once dirname(__DIR__).DIRECTORY_SEPARATOR.'app/Extensions/util/PhpYenc.php';
use Dotenv\Dotenv;
use Dotenv\Repository\RepositoryBuilder;
$repository = RepositoryBuilder::createWithDefaultAdapters()
->make();
$dotenv = Dotenv::create($repository, dirname(__DIR__, 1), null)->load();
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();