From 74cb1477bb921a2378ea22a552b71a48c11e0931 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 20 Jul 2018 16:34:32 +0200 Subject: Better API (integrated oauth completely) --- bootstrap/app.php | 6 +++--- bootstrap/autoload.php | 34 ++++++++++++++++++++++++++++++++++ bootstrap/cache/.gitignore | 0 3 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 bootstrap/autoload.php mode change 100755 => 100644 bootstrap/cache/.gitignore (limited to 'bootstrap') diff --git a/bootstrap/app.php b/bootstrap/app.php index f2801ad..8966433 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -28,17 +28,17 @@ $app = new Illuminate\Foundation\Application( $app->singleton( Illuminate\Contracts\Http\Kernel::class, - App\Http\Kernel::class + Infrastructure\Http\Kernel::class ); $app->singleton( Illuminate\Contracts\Console\Kernel::class, - App\Console\Kernel::class + Infrastructure\Console\Kernel::class ); $app->singleton( Illuminate\Contracts\Debug\ExceptionHandler::class, - App\Exceptions\Handler::class + Infrastructure\Exceptions\Handler::class ); /* diff --git a/bootstrap/autoload.php b/bootstrap/autoload.php new file mode 100644 index 0000000..3830137 --- /dev/null +++ b/bootstrap/autoload.php @@ -0,0 +1,34 @@ +