application.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application URL
  6. |--------------------------------------------------------------------------
  7. |
  8. | The URL used to access your application. No trailing slash.
  9. |
  10. */
  11. 'url' => 'http://localhost',
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Application Index
  15. |--------------------------------------------------------------------------
  16. |
  17. | If you are including the "index.php" in your URLs, you can ignore this.
  18. |
  19. | However, if you are using mod_rewrite or something similar to get
  20. | cleaner URLs, set this option to an empty string.
  21. |
  22. */
  23. 'index' => 'index.php',
  24. /*
  25. |--------------------------------------------------------------------------
  26. | Application Language
  27. |--------------------------------------------------------------------------
  28. |
  29. | The default language of your application. This language will be used by
  30. | Lang library as the default language when doing string localization.
  31. |
  32. */
  33. 'language' => 'en',
  34. /*
  35. |--------------------------------------------------------------------------
  36. | Application Character Encoding
  37. |--------------------------------------------------------------------------
  38. |
  39. | The default character encoding used by your application. This is the
  40. | character encoding that will be used by the Str, Text, and Form classes.
  41. |
  42. */
  43. 'encoding' => 'UTF-8',
  44. /*
  45. |--------------------------------------------------------------------------
  46. | Application Timezone
  47. |--------------------------------------------------------------------------
  48. |
  49. | The default timezone of your application. This timezone will be used when
  50. | Laravel needs a date, such as when writing to a log file.
  51. |
  52. */
  53. 'timezone' => 'UTC',
  54. /*
  55. |--------------------------------------------------------------------------
  56. | Application Key
  57. |--------------------------------------------------------------------------
  58. |
  59. | Your application key should be a 32 character string that is totally
  60. | random and secret. This key is used by the encryption class to generate
  61. | secure, encrypted strings.
  62. |
  63. */
  64. 'key' => '',
  65. );