application.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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' => '',
  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 Key
  27. |--------------------------------------------------------------------------
  28. |
  29. | The application key should be a random, 32 character string.
  30. |
  31. | This key is used by the encryption and cookie classes to generate secure
  32. | encrypted strings and hashes. It is extremely important that this key
  33. | remain secret and should not be shared with anyone.
  34. |
  35. */
  36. 'key' => '',
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Application Character Encoding
  40. |--------------------------------------------------------------------------
  41. |
  42. | The default character encoding used by your application. This encoding
  43. | will be used by the Str, Text, and Form classes.
  44. |
  45. */
  46. 'encoding' => 'UTF-8',
  47. /*
  48. |--------------------------------------------------------------------------
  49. | Application Language
  50. |--------------------------------------------------------------------------
  51. |
  52. | The default language of your application. This language will be used by
  53. | Lang library as the default language when doing string localization.
  54. |
  55. */
  56. 'language' => 'en',
  57. /*
  58. |--------------------------------------------------------------------------
  59. | SSL Link Generation
  60. |--------------------------------------------------------------------------
  61. |
  62. | Many sites use SSL to protect their users data. However, you may not
  63. | always be able to use SSL on your development machine, meaning all HTTPS
  64. | will be broken during development.
  65. |
  66. | For this reason, you may wish to disable the generation of HTTPS links
  67. | throughout your application. This option does just that. All attempts to
  68. | generate HTTPS links will generate regular HTTP links instead.
  69. |
  70. */
  71. 'ssl' => true,
  72. /*
  73. |--------------------------------------------------------------------------
  74. | Application Timezone
  75. |--------------------------------------------------------------------------
  76. |
  77. | The default timezone of your application. This timezone will be used when
  78. | Laravel needs a date, such as when writing to a log file.
  79. |
  80. */
  81. 'timezone' => 'UTC',
  82. /*
  83. |--------------------------------------------------------------------------
  84. | Class Aliases
  85. |--------------------------------------------------------------------------
  86. |
  87. | Here, you can specify any class aliases that you would like registered
  88. | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
  89. |
  90. | Aliases make it more convenient to use namespaced classes. Instead of
  91. | referring to the class using its full namespace, you may simply use
  92. | the alias defined here.
  93. |
  94. | We have already aliased common Laravel classes to make your life easier.
  95. |
  96. */
  97. 'aliases' => array(
  98. 'Arr' => 'Laravel\\Arr',
  99. 'Asset' => 'Laravel\\Asset',
  100. 'Auth' => 'Laravel\\Auth',
  101. 'Autoloader' => 'Laravel\\Autoloader',
  102. 'Benchmark' => 'Laravel\\Benchmark',
  103. 'Cache' => 'Laravel\\Cache\\Manager',
  104. 'Config' => 'Laravel\\Config',
  105. 'Controller' => 'Laravel\\Routing\\Controller',
  106. 'Cookie' => 'Laravel\\Cookie',
  107. 'Crypter' => 'Laravel\\Crypter',
  108. 'DB' => 'Laravel\\Database\\Manager',
  109. 'Eloquent' => 'Laravel\\Database\\Eloquent\\Model',
  110. 'File' => 'Laravel\\File',
  111. 'Form' => 'Laravel\\Form',
  112. 'Hash' => 'Laravel\\Hash',
  113. 'HTML' => 'Laravel\\HTML',
  114. 'Inflector' => 'Laravel\\Inflector',
  115. 'Input' => 'Laravel\\Input',
  116. 'IoC' => 'Laravel\\IoC',
  117. 'Lang' => 'Laravel\\Lang',
  118. 'Memcached' => 'Laravel\\Memcached',
  119. 'Paginator' => 'Laravel\\Paginator',
  120. 'URL' => 'Laravel\\URL',
  121. 'Redirect' => 'Laravel\\Redirect',
  122. 'Redis' => 'Laravel\\Redis',
  123. 'Request' => 'Laravel\\Request',
  124. 'Response' => 'Laravel\\Response',
  125. 'Section' => 'Laravel\\Section',
  126. 'Session' => 'Laravel\\Facades\\Session',
  127. 'Str' => 'Laravel\\Str',
  128. 'Validator' => 'Laravel\\Validator',
  129. 'View' => 'Laravel\\View',
  130. ),
  131. );