From 92eb8143762e116e8959f6270271fd5540ca50ac Mon Sep 17 00:00:00 2001 From: horus_arch Date: Wed, 7 Feb 2018 18:07:53 +0100 Subject: Adds basic site in laravel. --- site/bootstrap/app.php | 55 +++++++++++++++++++++++++++++++++++++++++ site/bootstrap/cache/.gitignore | 2 ++ 2 files changed, 57 insertions(+) create mode 100644 site/bootstrap/app.php create mode 100644 site/bootstrap/cache/.gitignore (limited to 'site/bootstrap') diff --git a/site/bootstrap/app.php b/site/bootstrap/app.php new file mode 100644 index 0000000..f2801ad --- /dev/null +++ b/site/bootstrap/app.php @@ -0,0 +1,55 @@ +singleton( + Illuminate\Contracts\Http\Kernel::class, + App\Http\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Console\Kernel::class, + App\Console\Kernel::class +); + +$app->singleton( + Illuminate\Contracts\Debug\ExceptionHandler::class, + App\Exceptions\Handler::class +); + +/* +|-------------------------------------------------------------------------- +| Return The Application +|-------------------------------------------------------------------------- +| +| This script returns the application instance. The instance is given to +| the calling script so we can separate the building of the instances +| from the actual running of the application and sending responses. +| +*/ + +return $app; diff --git a/site/bootstrap/cache/.gitignore b/site/bootstrap/cache/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/site/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore -- cgit v1.2.3