Simple problems require simple solutions
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

126 lines
4.2 KiB

  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application Name
  6. |--------------------------------------------------------------------------
  7. |
  8. | This value is the name of your application, which will be used when the
  9. | framework needs to place the application's name in a notification or
  10. | other UI elements where an application name needs to be displayed.
  11. |
  12. */
  13. 'name' => env('APP_NAME', 'Laravel'),
  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' => (bool) 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. | the application so that it's available within Artisan commands.
  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. The timezone
  54. | is set to "UTC" by default as it is suitable for most use cases.
  55. |
  56. */
  57. 'timezone' => env('APP_TIMEZONE', 'UTC'),
  58. /*
  59. |--------------------------------------------------------------------------
  60. | Application Locale Configuration
  61. |--------------------------------------------------------------------------
  62. |
  63. | The application locale determines the default locale that will be used
  64. | by Laravel's translation / localization methods. This option can be
  65. | set to any locale for which you plan to have translation strings.
  66. |
  67. */
  68. 'locale' => env('APP_LOCALE', 'en'),
  69. 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
  70. 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
  71. /*
  72. |--------------------------------------------------------------------------
  73. | Encryption Key
  74. |--------------------------------------------------------------------------
  75. |
  76. | This key is utilized by Laravel's encryption services and should be set
  77. | to a random, 32 character string to ensure that all encrypted values
  78. | are secure. You should do this prior to deploying the application.
  79. |
  80. */
  81. 'cipher' => 'AES-256-CBC',
  82. 'key' => env('APP_KEY'),
  83. 'previous_keys' => [
  84. ...array_filter(
  85. explode(',', env('APP_PREVIOUS_KEYS', ''))
  86. ),
  87. ],
  88. /*
  89. |--------------------------------------------------------------------------
  90. | Maintenance Mode Driver
  91. |--------------------------------------------------------------------------
  92. |
  93. | These configuration options determine the driver used to determine and
  94. | manage Laravel's "maintenance mode" status. The "cache" driver will
  95. | allow maintenance mode to be controlled across multiple machines.
  96. |
  97. | Supported drivers: "file", "cache"
  98. |
  99. */
  100. 'maintenance' => [
  101. 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
  102. 'store' => env('APP_MAINTENANCE_STORE', 'database'),
  103. ],
  104. ];