application.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application URL
  6. |--------------------------------------------------------------------------
  7. |
  8. | The URL used to access your application without a trailing slash. The URL
  9. | does not have to be set. If it isn't we'll try our best to guess the URL
  10. | of your application.
  11. |
  12. */
  13. 'url' => '',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Index
  17. |--------------------------------------------------------------------------
  18. |
  19. | If you are including the "index.php" in your URLs, you can ignore this.
  20. | However, if you are using mod_rewrite to get cleaner URLs, just set
  21. | this option to an empty string and we'll take care of the rest.
  22. |
  23. */
  24. 'index' => 'index.php',
  25. /*
  26. |--------------------------------------------------------------------------
  27. | Application Key
  28. |--------------------------------------------------------------------------
  29. |
  30. | This key is used by the encryption and cookie classes to generate secure
  31. | encrypted strings and hashes. It is extremely important that this key
  32. | remain secret and should not be shared with anyone. Make it about 32
  33. | characters of random gibberish.
  34. |
  35. | The "auto_key" option tells Laravel to automatically set this key value
  36. | if one has not already been set. This is generally done on the first
  37. | request to the Laravel splash screen.
  38. |
  39. */
  40. 'key' => '',
  41. 'auto_key' => true,
  42. /*
  43. |--------------------------------------------------------------------------
  44. | Application Character Encoding
  45. |--------------------------------------------------------------------------
  46. |
  47. | The default character encoding used by your application. This encoding
  48. | will be used by the Str, Text, Form, and any other classes that need
  49. | to know what type of encoding to use for your awesome application.
  50. |
  51. */
  52. 'encoding' => 'UTF-8',
  53. /*
  54. |--------------------------------------------------------------------------
  55. | Application Language
  56. |--------------------------------------------------------------------------
  57. |
  58. | The default language of your application. This language will be used by
  59. | Lang library as the default language when doing string localization.
  60. |
  61. */
  62. 'language' => 'en',
  63. /*
  64. |--------------------------------------------------------------------------
  65. | SSL Link Generation
  66. |--------------------------------------------------------------------------
  67. |
  68. | Many sites use SSL to protect their users data. However, you may not be
  69. | able to use SSL on your development machine, meaning all HTTPS will be
  70. | broken during development.
  71. |
  72. | For this reason, you may wish to disable the generation of HTTPS links
  73. | throughout your application. This option does just that. All attempts
  74. | to generate HTTPS links will generate regular HTTP links instead.
  75. |
  76. */
  77. 'ssl' => true,
  78. /*
  79. |--------------------------------------------------------------------------
  80. | Application Timezone
  81. |--------------------------------------------------------------------------
  82. |
  83. | The default timezone of your application. The timezone will be used when
  84. | Laravel needs a date, such as when writing to a log file or travelling
  85. | to a distant star at warp speed.
  86. |
  87. */
  88. 'timezone' => 'UTC',
  89. /*
  90. |--------------------------------------------------------------------------
  91. | Class Aliases
  92. |--------------------------------------------------------------------------
  93. |
  94. | Here, you can specify any class aliases that you would like registered
  95. | when Laravel loads. Aliases are lazy-loaded, so feel free to add!
  96. |
  97. | Aliases make it more convenient to use namespaced classes. Instead of
  98. | referring to the class using its full namespace, you may simply use
  99. | the alias defined here.
  100. |
  101. */
  102. 'aliases' => array(
  103. 'Auth' => 'Laravel\\Auth',
  104. 'Asset' => 'Laravel\\Asset',
  105. 'Autoloader' => 'Laravel\\Autoloader',
  106. 'Bundle' => 'Laravel\\Bundle',
  107. 'Cache' => 'Laravel\\Cache',
  108. 'Config' => 'Laravel\\Config',
  109. 'Controller' => 'Laravel\\Routing\\Controller',
  110. 'Cookie' => 'Laravel\\Cookie',
  111. 'Crypter' => 'Laravel\\Crypter',
  112. 'DB' => 'Laravel\\Database',
  113. 'Event' => 'Laravel\\Event',
  114. 'File' => 'Laravel\\File',
  115. 'Filter' => 'Laravel\\Routing\\Filter',
  116. 'Form' => 'Laravel\\Form',
  117. 'Hash' => 'Laravel\\Hash',
  118. 'HTML' => 'Laravel\\HTML',
  119. 'Input' => 'Laravel\\Input',
  120. 'IoC' => 'Laravel\\IoC',
  121. 'Lang' => 'Laravel\\Lang',
  122. 'Log' => 'Laravel\\Log',
  123. 'Memcached' => 'Laravel\\Memcached',
  124. 'Paginator' => 'Laravel\\Paginator',
  125. 'URL' => 'Laravel\\URL',
  126. 'Redirect' => 'Laravel\\Redirect',
  127. 'Redis' => 'Laravel\\Redis',
  128. 'Request' => 'Laravel\\Request',
  129. 'Response' => 'Laravel\\Response',
  130. 'Route' => 'Laravel\\Routing\\Route',
  131. 'Router' => 'Laravel\\Routing\\Router',
  132. 'Schema' => 'Laravel\\Database\\Schema',
  133. 'Section' => 'Laravel\\Section',
  134. 'Session' => 'Laravel\\Session',
  135. 'Str' => 'Laravel\\Str',
  136. 'Task' => 'Laravel\\CLI\\Tasks\\Task',
  137. 'URI' => 'Laravel\\URI',
  138. 'Validator' => 'Laravel\\Validator',
  139. 'View' => 'Laravel\\View',
  140. ),
  141. );