|
|
|
@ -2,6 +2,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
return [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
| Application Environment
|
|
|
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| This value determines the "environment" your application is currently
|
|
|
|
|
|
|
|
| running in. This may determine how you prefer to configure various
|
|
|
|
|
|
|
|
| services your application utilizes. Set this in your ".env" file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
'env' => env('APP_ENV', 'production'),
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Application Debug Mode
|
|
|
|
| Application Debug Mode
|
|
|
|
@ -26,7 +39,7 @@ return [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
'url' => 'http://localhost',
|
|
|
|
'url' => env('APP_URL', 'http://localhost'),
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
@ -78,7 +91,7 @@ return [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
'key' => env('APP_KEY', 'SomeRandomString'),
|
|
|
|
'key' => env('APP_KEY'),
|
|
|
|
|
|
|
|
|
|
|
|
'cipher' => 'AES-256-CBC',
|
|
|
|
'cipher' => 'AES-256-CBC',
|
|
|
|
|
|
|
|
|
|
|
|
@ -95,7 +108,7 @@ return [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
'log' => 'single',
|
|
|
|
'log' => env('APP_LOG', 'single'),
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
@ -113,13 +126,11 @@ return [
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
* Laravel Framework Service Providers...
|
|
|
|
* Laravel Framework Service Providers...
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
|
|
|
|
|
|
|
|
Illuminate\Auth\AuthServiceProvider::class,
|
|
|
|
Illuminate\Auth\AuthServiceProvider::class,
|
|
|
|
Illuminate\Broadcasting\BroadcastServiceProvider::class,
|
|
|
|
Illuminate\Broadcasting\BroadcastServiceProvider::class,
|
|
|
|
Illuminate\Bus\BusServiceProvider::class,
|
|
|
|
Illuminate\Bus\BusServiceProvider::class,
|
|
|
|
Illuminate\Cache\CacheServiceProvider::class,
|
|
|
|
Illuminate\Cache\CacheServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
|
|
Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
|
|
|
|
Illuminate\Routing\ControllerServiceProvider::class,
|
|
|
|
|
|
|
|
Illuminate\Cookie\CookieServiceProvider::class,
|
|
|
|
Illuminate\Cookie\CookieServiceProvider::class,
|
|
|
|
Illuminate\Database\DatabaseServiceProvider::class,
|
|
|
|
Illuminate\Database\DatabaseServiceProvider::class,
|
|
|
|
Illuminate\Encryption\EncryptionServiceProvider::class,
|
|
|
|
Illuminate\Encryption\EncryptionServiceProvider::class,
|
|
|
|
@ -164,7 +175,6 @@ return [
|
|
|
|
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
|
|
|
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
|
|
|
'Auth' => Illuminate\Support\Facades\Auth::class,
|
|
|
|
'Auth' => Illuminate\Support\Facades\Auth::class,
|
|
|
|
'Blade' => Illuminate\Support\Facades\Blade::class,
|
|
|
|
'Blade' => Illuminate\Support\Facades\Blade::class,
|
|
|
|
'Bus' => Illuminate\Support\Facades\Bus::class,
|
|
|
|
|
|
|
|
'Cache' => Illuminate\Support\Facades\Cache::class,
|
|
|
|
'Cache' => Illuminate\Support\Facades\Cache::class,
|
|
|
|
'Config' => Illuminate\Support\Facades\Config::class,
|
|
|
|
'Config' => Illuminate\Support\Facades\Config::class,
|
|
|
|
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
|
|
|
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
|
|
|
@ -175,8 +185,6 @@ return [
|
|
|
|
'File' => Illuminate\Support\Facades\File::class,
|
|
|
|
'File' => Illuminate\Support\Facades\File::class,
|
|
|
|
'Gate' => Illuminate\Support\Facades\Gate::class,
|
|
|
|
'Gate' => Illuminate\Support\Facades\Gate::class,
|
|
|
|
'Hash' => Illuminate\Support\Facades\Hash::class,
|
|
|
|
'Hash' => Illuminate\Support\Facades\Hash::class,
|
|
|
|
'Input' => Illuminate\Support\Facades\Input::class,
|
|
|
|
|
|
|
|
'Inspiring' => Illuminate\Foundation\Inspiring::class,
|
|
|
|
|
|
|
|
'Lang' => Illuminate\Support\Facades\Lang::class,
|
|
|
|
'Lang' => Illuminate\Support\Facades\Lang::class,
|
|
|
|
'Log' => Illuminate\Support\Facades\Log::class,
|
|
|
|
'Log' => Illuminate\Support\Facades\Log::class,
|
|
|
|
'Mail' => Illuminate\Support\Facades\Mail::class,
|
|
|
|
'Mail' => Illuminate\Support\Facades\Mail::class,
|
|
|
|
|