app.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. */
  13. 'name' => env('APP_NAME', 'Lumen'),
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Environment
  17. |--------------------------------------------------------------------------
  18. |
  19. | This value determines the "environment" your application is currently
  20. | running in. This may determine how you prefer to configure various
  21. | services the application utilizes. Set this in your ".env" file.
  22. |
  23. */
  24. 'env' => env('APP_ENV', 'production'),
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Application Debug Mode
  28. |--------------------------------------------------------------------------
  29. |
  30. | When your application is in debug mode, detailed error messages with
  31. | stack traces will be shown on every error that occurs within your
  32. | application. If disabled, a simple generic error page is shown.
  33. |
  34. */
  35. 'debug' => env('APP_DEBUG', false),
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Application URL
  39. |--------------------------------------------------------------------------
  40. |
  41. | This URL is used by the console to properly generate URLs when using
  42. | the Artisan command line tool. You should set this to the root of
  43. | your application so that it is used when running Artisan tasks.
  44. |
  45. */
  46. 'url' => env('APP_URL', 'http://localhost'),
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Application Timezone
  50. |--------------------------------------------------------------------------
  51. |
  52. | Here you may specify the default timezone for your application, which
  53. | will be used by the PHP date and date-time functions. We have gone
  54. | ahead and set this to a sensible default for you out of the box.
  55. |
  56. */
  57. 'timezone' => 'PRC',
  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' => env('APP_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' => env('APP_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. ];