app.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. return [
  3. 'words_in_table_cell_limit' => env('WORDS_IN_TABLE_CELL_LIMIT', 7),
  4. /*
  5. |--------------------------------------------------------------------------
  6. | Application Name
  7. |--------------------------------------------------------------------------
  8. |
  9. | This value is the name of your application, which will be used when the
  10. | framework needs to place the application's name in a notification or
  11. | other UI elements where an application name needs to be displayed.
  12. |
  13. */
  14. 'name' => env('APP_NAME', 'Laravel'),
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Application Environment
  18. |--------------------------------------------------------------------------
  19. |
  20. | This value determines the "environment" your application is currently
  21. | running in. This may determine how you prefer to configure various
  22. | services the application utilizes. Set this in your ".env" file.
  23. |
  24. */
  25. 'env' => env('APP_ENV', 'production'),
  26. 'force_https' => env('FORCE_HTTPS', false),
  27. /*
  28. |--------------------------------------------------------------------------
  29. | Application Debug Mode
  30. |--------------------------------------------------------------------------
  31. |
  32. | When your application is in debug mode, detailed error messages with
  33. | stack traces will be shown on every error that occurs within your
  34. | application. If disabled, a simple generic error page is shown.
  35. |
  36. */
  37. 'debug' => (bool) env('APP_DEBUG', false),
  38. /*
  39. |--------------------------------------------------------------------------
  40. | Application URL
  41. |--------------------------------------------------------------------------
  42. |
  43. | This URL is used by the console to properly generate URLs when using
  44. | the Artisan command line tool. You should set this to the root of
  45. | the application so that it's available within Artisan commands.
  46. |
  47. */
  48. 'url' => env('APP_URL', 'http://localhost'),
  49. 'addr' => env('APP_ADDR', 'http://localhost'),
  50. 'ws_addr' => env('WS_ADDR', 'ws'),
  51. /*
  52. |--------------------------------------------------------------------------
  53. | Application Timezone
  54. |--------------------------------------------------------------------------
  55. |
  56. | Here you may specify the default timezone for your application, which
  57. | will be used by the PHP date and date-time functions. The timezone
  58. | is set to "UTC" by default as it is suitable for most use cases.
  59. |
  60. */
  61. 'timezone' => env('APP_TIMEZONE', 'UTC'),
  62. /*
  63. |--------------------------------------------------------------------------
  64. | Application Locale Configuration
  65. |--------------------------------------------------------------------------
  66. |
  67. | The application locale determines the default locale that will be used
  68. | by Laravel's translation / localization methods. This option can be
  69. | set to any locale for which you plan to have translation strings.
  70. |
  71. */
  72. 'locale' => env('APP_LOCALE', 'en'),
  73. 'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
  74. 'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
  75. /*
  76. |--------------------------------------------------------------------------
  77. | Encryption Key
  78. |--------------------------------------------------------------------------
  79. |
  80. | This key is utilized by Laravel's encryption services and should be set
  81. | to a random, 32 character string to ensure that all encrypted values
  82. | are secure. You should do this prior to deploying the application.
  83. |
  84. */
  85. 'cipher' => 'AES-256-CBC',
  86. 'key' => env('APP_KEY'),
  87. 'previous_keys' => [
  88. ...array_filter(
  89. explode(',', env('APP_PREVIOUS_KEYS', ''))
  90. ),
  91. ],
  92. /*
  93. |--------------------------------------------------------------------------
  94. | Maintenance Mode Driver
  95. |--------------------------------------------------------------------------
  96. |
  97. | These configuration options determine the driver used to determine and
  98. | manage Laravel's "maintenance mode" status. The "cache" driver will
  99. | allow maintenance mode to be controlled across multiple machines.
  100. |
  101. | Supported drivers: "file", "cache"
  102. |
  103. */
  104. 'maintenance' => [
  105. 'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
  106. 'store' => env('APP_MAINTENANCE_STORE', 'database'),
  107. ],
  108. ];