From 77f1076c15fbb8bf826a58cb2d556801a82a81ee Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Wed, 26 Dec 2018 09:52:37 -0500 Subject: - Add laravel site directories --- laravel/bootstrap/app.php | 55 ++++++++++++++++++++++++++++++++++++++ laravel/bootstrap/cache/.gitignore | 2 ++ 2 files changed, 57 insertions(+) create mode 100644 laravel/bootstrap/app.php create mode 100755 laravel/bootstrap/cache/.gitignore (limited to 'laravel/bootstrap') diff --git a/laravel/bootstrap/app.php b/laravel/bootstrap/app.php new file mode 100644 index 0000000..037e17d --- /dev/null +++ b/laravel/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/laravel/bootstrap/cache/.gitignore b/laravel/bootstrap/cache/.gitignore new file mode 100755 index 0000000..d6b7ef3 --- /dev/null +++ b/laravel/bootstrap/cache/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore -- cgit 1.4.1