application.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. | Asset URL
  17. |--------------------------------------------------------------------------
  18. |
  19. | The base URL used for your application's asset files, if you are serving
  20. | them through a different server or a content delivery network, for
  21. | example. If it's not set, we'll default to the application URL (above).
  22. | Leave off the trailing slash.
  23. |
  24. */
  25. 'asset_url' => '',
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Application Index
  29. |--------------------------------------------------------------------------
  30. |
  31. | If you are including the "index.php" in your URLs, you can ignore this.
  32. | However, if you are using mod_rewrite to get cleaner URLs, just set
  33. | this option to an empty string and we'll take care of the rest.
  34. |
  35. */
  36. 'index' => 'index.php',
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Application Key
  40. |--------------------------------------------------------------------------
  41. |
  42. | This key is used by the encryption and cookie classes to generate secure
  43. | encrypted strings and hashes. It is extremely important that this key
  44. | remain secret and should not be shared with anyone. Make it about 32
  45. | characters of random gibberish.
  46. |
  47. */
  48. 'key' => 'YourSecretKeyGoesHere!',
  49. /*
  50. |--------------------------------------------------------------------------
  51. | Profiler Toolbar
  52. |--------------------------------------------------------------------------
  53. |
  54. | Laravel includes a beautiful profiler toolbar that gives you a heads
  55. | up display of the queries and logs performed by your application.
  56. | This is wonderful for development, but, of course, you should
  57. | disable the toolbar for production applications..
  58. |
  59. */
  60. 'profiler' => false,
  61. /*
  62. |--------------------------------------------------------------------------
  63. | Application Character Encoding
  64. |--------------------------------------------------------------------------
  65. |
  66. | The default character encoding used by your application. This encoding
  67. | will be used by the Str, Text, Form, and any other classes that need
  68. | to know what type of encoding to use for your awesome application.
  69. |
  70. */
  71. 'encoding' => 'UTF-8',
  72. /*
  73. |--------------------------------------------------------------------------
  74. | Application Language
  75. |--------------------------------------------------------------------------
  76. |
  77. | The default language of your application. This language will be used by
  78. | Lang library as the default language when doing string localization.
  79. |
  80. */
  81. 'language' => 'en',
  82. /*
  83. |--------------------------------------------------------------------------
  84. | SSL Link Generation
  85. |--------------------------------------------------------------------------
  86. |
  87. | Many sites use SSL to protect their users data. However, you may not be
  88. | able to use SSL on your development machine, meaning all HTTPS will be
  89. | broken during development.
  90. |
  91. | For this reason, you may wish to disable the generation of HTTPS links
  92. | throughout your application. This option does just that. All attempts
  93. | to generate HTTPS links will generate regular HTTP links instead.
  94. |
  95. */
  96. 'ssl' => true,
  97. /*
  98. |--------------------------------------------------------------------------
  99. | Application Timezone
  100. |--------------------------------------------------------------------------
  101. |
  102. | The default timezone of your application. The timezone will be used when
  103. | Laravel needs a date, such as when writing to a log file or travelling
  104. | to a distant star at warp speed.
  105. |
  106. */
  107. 'timezone' => 'UTC',
  108. /*
  109. |--------------------------------------------------------------------------
  110. | Class Aliases
  111. |--------------------------------------------------------------------------
  112. |
  113. | Here, you can specify any class aliases that you would like registered
  114. | when Laravel loads. Aliases are lazy-loaded, so feel free to add!
  115. |
  116. | Aliases make it more convenient to use namespaced classes. Instead of
  117. | referring to the class using its full namespace, you may simply use
  118. | the alias defined here.
  119. |
  120. */
  121. 'aliases' => array(
  122. 'Auth' => 'Laravel\\Auth',
  123. 'Asset' => 'Laravel\\Asset',
  124. 'Autoloader' => 'Laravel\\Autoloader',
  125. 'Blade' => 'Laravel\\Blade',
  126. 'Bundle' => 'Laravel\\Bundle',
  127. 'Cache' => 'Laravel\\Cache',
  128. 'Config' => 'Laravel\\Config',
  129. 'Controller' => 'Laravel\\Routing\\Controller',
  130. 'Cookie' => 'Laravel\\Cookie',
  131. 'Crypter' => 'Laravel\\Crypter',
  132. 'DB' => 'Laravel\\Database',
  133. 'Eloquent' => 'Laravel\\Database\\Eloquent\\Model',
  134. 'Event' => 'Laravel\\Event',
  135. 'File' => 'Laravel\\File',
  136. 'Filter' => 'Laravel\\Routing\\Filter',
  137. 'Form' => 'Laravel\\Form',
  138. 'Hash' => 'Laravel\\Hash',
  139. 'HTML' => 'Laravel\\HTML',
  140. 'Input' => 'Laravel\\Input',
  141. 'IoC' => 'Laravel\\IoC',
  142. 'Lang' => 'Laravel\\Lang',
  143. 'Log' => 'Laravel\\Log',
  144. 'Memcached' => 'Laravel\\Memcached',
  145. 'Paginator' => 'Laravel\\Paginator',
  146. 'Profiler' => 'Laravel\\Profiling\\Profiler',
  147. 'URL' => 'Laravel\\URL',
  148. 'Redirect' => 'Laravel\\Redirect',
  149. 'Redis' => 'Laravel\\Redis',
  150. 'Request' => 'Laravel\\Request',
  151. 'Response' => 'Laravel\\Response',
  152. 'Route' => 'Laravel\\Routing\\Route',
  153. 'Router' => 'Laravel\\Routing\\Router',
  154. 'Schema' => 'Laravel\\Database\\Schema',
  155. 'Section' => 'Laravel\\Section',
  156. 'Session' => 'Laravel\\Session',
  157. 'Str' => 'Laravel\\Str',
  158. 'Task' => 'Laravel\\CLI\\Tasks\\Task',
  159. 'URI' => 'Laravel\\URI',
  160. 'Validator' => 'Laravel\\Validator',
  161. 'View' => 'Laravel\\View',
  162. ),
  163. );