app.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Environment
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value determines the "environment" your application is currently
  9. | running in. This may determine how you prefer to configure various
  10. | services your application utilizes. Set this in your ".env" file.
  11. |
  12. */
  13. 'env' => env('APP_ENV', 'production'),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Debug Mode
  17. |--------------------------------------------------------------------------
  18. |
  19. | When your application is in debug mode, detailed error messages with
  20. | stack traces will be shown on every error that occurs within your
  21. | application. If disabled, a simple generic error page is shown.
  22. |
  23. */
  24. 'debug' => env('APP_DEBUG', false),
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Application Log Level
  28. |--------------------------------------------------------------------------
  29. |
  30. | By default, Laravel will write all log messages to its log file. You
  31. | can specify the minimum log level by setting this value to one of
  32. | the logging levels defined in RFC 5424 and Laravel will log all
  33. | messages greater than or equal to the configured log level.
  34. |
  35. */
  36. 'log_level' => env('APP_LOG_LEVEL', 'debug'),
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Application URL
  40. |--------------------------------------------------------------------------
  41. |
  42. | This URL is used by the console to properly generate URLs when using
  43. | the Artisan command line tool. You should set this to the root of
  44. | your application so that it is used when running Artisan tasks.
  45. |
  46. */
  47. 'url' => env('APP_URL', 'http://localhost'),
  48. /*
  49. |--------------------------------------------------------------------------
  50. | Application Timezone
  51. |--------------------------------------------------------------------------
  52. |
  53. | Here you may specify the default timezone for your application, which
  54. | will be used by the PHP date and date-time functions. We have gone
  55. | ahead and set this to a sensible default for you out of the box.
  56. |
  57. */
  58. 'timezone' => 'UTC',
  59. /*
  60. |--------------------------------------------------------------------------
  61. | Application Locale Configuration
  62. |--------------------------------------------------------------------------
  63. |
  64. | The application locale determines the default locale that will be used
  65. | by the translation service provider. You are free to set this value
  66. | to any of the locales which will be supported by the application.
  67. |
  68. */
  69. 'locale' => 'en',
  70. /*
  71. |--------------------------------------------------------------------------
  72. | Application Fallback Locale
  73. |--------------------------------------------------------------------------
  74. |
  75. | The fallback locale determines the locale to use when the current one
  76. | is not available. You may change the value to correspond to any of
  77. | the language folders that are provided through your application.
  78. |
  79. */
  80. 'fallback_locale' => 'en',
  81. /*
  82. |--------------------------------------------------------------------------
  83. | Encryption Key
  84. |--------------------------------------------------------------------------
  85. |
  86. | This key is used by the Illuminate encrypter service and should be set
  87. | to a random, 32 character string, otherwise these encrypted strings
  88. | will not be safe. Please do this before deploying an application!
  89. |
  90. */
  91. 'key' => env('APP_KEY'),
  92. 'cipher' => 'AES-256-CBC',
  93. /*
  94. |--------------------------------------------------------------------------
  95. | Logging Configuration
  96. |--------------------------------------------------------------------------
  97. |
  98. | Here you may configure the log settings for your application. Out of
  99. | the box, Laravel uses the Monolog PHP logging library. This gives
  100. | you a variety of powerful log handlers / formatters to utilize.
  101. |
  102. | Available Settings: "single", "daily", "syslog", "errorlog"
  103. |
  104. */
  105. 'log' => env('APP_LOG', 'single'),
  106. /*
  107. |--------------------------------------------------------------------------
  108. | Autoloaded Service Providers
  109. |--------------------------------------------------------------------------
  110. |
  111. | The service providers listed here will be automatically loaded on the
  112. | request to your application. Feel free to add your own services to
  113. | this array to grant expanded functionality to your applications.
  114. |
  115. */
  116. 'providers' => [
  117. /*
  118. * Laravel Framework Service Providers...
  119. */
  120. Illuminate\Auth\AuthServiceProvider::class,
  121. Illuminate\Broadcasting\BroadcastServiceProvider::class,
  122. Illuminate\Bus\BusServiceProvider::class,
  123. Illuminate\Cache\CacheServiceProvider::class,
  124. Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
  125. Illuminate\Cookie\CookieServiceProvider::class,
  126. Illuminate\Database\DatabaseServiceProvider::class,
  127. Illuminate\Encryption\EncryptionServiceProvider::class,
  128. Illuminate\Filesystem\FilesystemServiceProvider::class,
  129. Illuminate\Foundation\Providers\FoundationServiceProvider::class,
  130. Illuminate\Hashing\HashServiceProvider::class,
  131. Illuminate\Mail\MailServiceProvider::class,
  132. Illuminate\Pagination\PaginationServiceProvider::class,
  133. Illuminate\Pipeline\PipelineServiceProvider::class,
  134. Illuminate\Queue\QueueServiceProvider::class,
  135. Illuminate\Redis\RedisServiceProvider::class,
  136. Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
  137. Illuminate\Session\SessionServiceProvider::class,
  138. Illuminate\Translation\TranslationServiceProvider::class,
  139. Illuminate\Validation\ValidationServiceProvider::class,
  140. Illuminate\View\ViewServiceProvider::class,
  141. /*
  142. * Application Service Providers...
  143. */
  144. App\Providers\AppServiceProvider::class,
  145. App\Providers\AuthServiceProvider::class,
  146. App\Providers\EventServiceProvider::class,
  147. App\Providers\RouteServiceProvider::class,
  148. ],
  149. /*
  150. |--------------------------------------------------------------------------
  151. | Class Aliases
  152. |--------------------------------------------------------------------------
  153. |
  154. | This array of class aliases will be registered when this application
  155. | is started. However, feel free to register as many as you wish as
  156. | the aliases are "lazy" loaded so they don't hinder performance.
  157. |
  158. */
  159. 'aliases' => [
  160. 'App' => Illuminate\Support\Facades\App::class,
  161. 'Artisan' => Illuminate\Support\Facades\Artisan::class,
  162. 'Auth' => Illuminate\Support\Facades\Auth::class,
  163. 'Blade' => Illuminate\Support\Facades\Blade::class,
  164. 'Cache' => Illuminate\Support\Facades\Cache::class,
  165. 'Config' => Illuminate\Support\Facades\Config::class,
  166. 'Cookie' => Illuminate\Support\Facades\Cookie::class,
  167. 'Crypt' => Illuminate\Support\Facades\Crypt::class,
  168. 'DB' => Illuminate\Support\Facades\DB::class,
  169. 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
  170. 'Event' => Illuminate\Support\Facades\Event::class,
  171. 'File' => Illuminate\Support\Facades\File::class,
  172. 'Gate' => Illuminate\Support\Facades\Gate::class,
  173. 'Hash' => Illuminate\Support\Facades\Hash::class,
  174. 'Lang' => Illuminate\Support\Facades\Lang::class,
  175. 'Log' => Illuminate\Support\Facades\Log::class,
  176. 'Mail' => Illuminate\Support\Facades\Mail::class,
  177. 'Password' => Illuminate\Support\Facades\Password::class,
  178. 'Queue' => Illuminate\Support\Facades\Queue::class,
  179. 'Redirect' => Illuminate\Support\Facades\Redirect::class,
  180. 'Redis' => Illuminate\Support\Facades\Redis::class,
  181. 'Request' => Illuminate\Support\Facades\Request::class,
  182. 'Response' => Illuminate\Support\Facades\Response::class,
  183. 'Route' => Illuminate\Support\Facades\Route::class,
  184. 'Schema' => Illuminate\Support\Facades\Schema::class,
  185. 'Session' => Illuminate\Support\Facades\Session::class,
  186. 'Storage' => Illuminate\Support\Facades\Storage::class,
  187. 'URL' => Illuminate\Support\Facades\URL::class,
  188. 'Validator' => Illuminate\Support\Facades\Validator::class,
  189. 'View' => Illuminate\Support\Facades\View::class,
  190. ],
  191. ];