app.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Name
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value is the name of your application. This value is used when the
  9. | framework needs to place the application's name in a notification or
  10. | any other location as required by the application or its packages.
  11. */
  12. 'name' => env('APP_NAME', 'Laravel'),
  13. /*
  14. |--------------------------------------------------------------------------
  15. | Application Environment
  16. |--------------------------------------------------------------------------
  17. |
  18. | This value determines the "environment" your application is currently
  19. | running in. This may determine how you prefer to configure various
  20. | services your application utilizes. Set this in your ".env" file.
  21. |
  22. */
  23. 'env' => env('APP_ENV', 'production'),
  24. /*
  25. |--------------------------------------------------------------------------
  26. | Application Debug Mode
  27. |--------------------------------------------------------------------------
  28. |
  29. | When your application is in debug mode, detailed error messages with
  30. | stack traces will be shown on every error that occurs within your
  31. | application. If disabled, a simple generic error page is shown.
  32. |
  33. */
  34. 'debug' => env('APP_DEBUG', false),
  35. /*
  36. |--------------------------------------------------------------------------
  37. | Application URL
  38. |--------------------------------------------------------------------------
  39. |
  40. | This URL is used by the console to properly generate URLs when using
  41. | the Artisan command line tool. You should set this to the root of
  42. | your application so that it is used when running Artisan tasks.
  43. |
  44. */
  45. 'url' => env('APP_URL', 'http://localhost'),
  46. /*
  47. |--------------------------------------------------------------------------
  48. | Application Timezone
  49. |--------------------------------------------------------------------------
  50. |
  51. | Here you may specify the default timezone for your application, which
  52. | will be used by the PHP date and date-time functions. We have gone
  53. | ahead and set this to a sensible default for you out of the box.
  54. |
  55. */
  56. // 'timezone' => 'UTC',
  57. 'timezone' => 'Asia/Shanghai',
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Application Locale Configuration
  61. |--------------------------------------------------------------------------
  62. |
  63. | The application locale determines the default locale that will be used
  64. | by the translation service provider. You are free to set this value
  65. | to any of the locales which will be supported by the application.
  66. |
  67. */
  68. 'locale' => 'en',
  69. /*
  70. |--------------------------------------------------------------------------
  71. | Application Fallback Locale
  72. |--------------------------------------------------------------------------
  73. |
  74. | The fallback locale determines the locale to use when the current one
  75. | is not available. You may change the value to correspond to any of
  76. | the language folders that are provided through your application.
  77. |
  78. */
  79. 'fallback_locale' => 'en',
  80. /*
  81. |--------------------------------------------------------------------------
  82. | Encryption Key
  83. |--------------------------------------------------------------------------
  84. |
  85. | This key is used by the Illuminate encrypter service and should be set
  86. | to a random, 32 character string, otherwise these encrypted strings
  87. | will not be safe. Please do this before deploying an application!
  88. |
  89. */
  90. 'key' => env('APP_KEY'),
  91. 'cipher' => 'AES-256-CBC',
  92. /*
  93. |--------------------------------------------------------------------------
  94. | Logging Configuration
  95. |--------------------------------------------------------------------------
  96. |
  97. | Here you may configure the log settings for your application. Out of
  98. | the box, Laravel uses the Monolog PHP logging library. This gives
  99. | you a variety of powerful log handlers / formatters to utilize.
  100. |
  101. | Available Settings: "single", "daily", "syslog", "errorlog"
  102. |
  103. */
  104. 'log' => env('APP_LOG', 'single'),
  105. 'log_level' => env('APP_LOG_LEVEL', 'debug'),
  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\Notifications\NotificationServiceProvider::class,
  133. Illuminate\Pagination\PaginationServiceProvider::class,
  134. Illuminate\Pipeline\PipelineServiceProvider::class,
  135. Illuminate\Queue\QueueServiceProvider::class,
  136. Illuminate\Redis\RedisServiceProvider::class,
  137. Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
  138. Illuminate\Session\SessionServiceProvider::class,
  139. Illuminate\Translation\TranslationServiceProvider::class,
  140. Illuminate\Validation\ValidationServiceProvider::class,
  141. Illuminate\View\ViewServiceProvider::class,
  142. Laravel\Passport\PassportServiceProvider::class,
  143. Overtrue\LaravelWeChat\ServiceProvider::class,
  144. /*
  145. * Package Service Providers...
  146. */
  147. /*
  148. * Application Service Providers...
  149. */
  150. App\Providers\AppServiceProvider::class,
  151. App\Providers\AuthServiceProvider::class,
  152. // App\Providers\BroadcastServiceProvider::class,
  153. App\Providers\EventServiceProvider::class,
  154. App\Providers\RouteServiceProvider::class,
  155. Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
  156. Laravel\Passport\PassportServiceProvider::class,
  157. Intervention\Image\ImageServiceProvider::class,
  158. Germey\Geetest\GeetestServiceProvider::class
  159. ],
  160. /*
  161. |--------------------------------------------------------------------------
  162. | Class Aliases
  163. |--------------------------------------------------------------------------
  164. |
  165. | This array of class aliases will be registered when this application
  166. | is started. However, feel free to register as many as you wish as
  167. | the aliases are "lazy" loaded so they don't hinder performance.
  168. |
  169. */
  170. 'aliases' => [
  171. 'App' => Illuminate\Support\Facades\App::class,
  172. 'Artisan' => Illuminate\Support\Facades\Artisan::class,
  173. 'Auth' => Illuminate\Support\Facades\Auth::class,
  174. 'Blade' => Illuminate\Support\Facades\Blade::class,
  175. 'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
  176. 'Bus' => Illuminate\Support\Facades\Bus::class,
  177. 'Cache' => Illuminate\Support\Facades\Cache::class,
  178. 'Config' => Illuminate\Support\Facades\Config::class,
  179. 'Cookie' => Illuminate\Support\Facades\Cookie::class,
  180. 'Crypt' => Illuminate\Support\Facades\Crypt::class,
  181. 'DB' => Illuminate\Support\Facades\DB::class,
  182. 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
  183. 'Event' => Illuminate\Support\Facades\Event::class,
  184. 'File' => Illuminate\Support\Facades\File::class,
  185. 'Gate' => Illuminate\Support\Facades\Gate::class,
  186. 'Hash' => Illuminate\Support\Facades\Hash::class,
  187. 'Lang' => Illuminate\Support\Facades\Lang::class,
  188. 'Log' => Illuminate\Support\Facades\Log::class,
  189. 'Mail' => Illuminate\Support\Facades\Mail::class,
  190. 'Notification' => Illuminate\Support\Facades\Notification::class,
  191. 'Password' => Illuminate\Support\Facades\Password::class,
  192. 'Queue' => Illuminate\Support\Facades\Queue::class,
  193. 'Redirect' => Illuminate\Support\Facades\Redirect::class,
  194. 'Redis' => Illuminate\Support\Facades\Redis::class,
  195. 'Request' => Illuminate\Support\Facades\Request::class,
  196. 'Response' => Illuminate\Support\Facades\Response::class,
  197. 'Route' => Illuminate\Support\Facades\Route::class,
  198. 'Schema' => Illuminate\Support\Facades\Schema::class,
  199. 'Session' => Illuminate\Support\Facades\Session::class,
  200. 'Storage' => Illuminate\Support\Facades\Storage::class,
  201. 'URL' => Illuminate\Support\Facades\URL::class,
  202. 'Validator' => Illuminate\Support\Facades\Validator::class,
  203. 'View' => Illuminate\Support\Facades\View::class,
  204. 'Image' => Intervention\Image\Facades\Image::class,
  205. 'Geetest' => Germey\Geetest\Geetest::class,
  206. 'EasyWeChat' => Overtrue\LaravelWeChat\Facade::class,
  207. ],
  208. ];