bootstrap fix

This commit is contained in:
2021-03-03 11:16:10 +01:00
parent 6088c0d816
commit 1808b0eca7
7 changed files with 6 additions and 6 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
require "vendor/autoload.php";
use Illuminate\Database\Capsule\Manager as Capsule;
$capsule = new Capsule;
$capsule->addConnection([
"driver" => "mysql",
"host" =>"127.0.0.1",
"database" => "gamejamdb",
"username" => "root",
"password" => ""
]);
$capsule->setAsGlobal();
$capsule->bootEloquent();