application.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. */
  36. 'key' => 'YourSecretKeyGoesHere!',
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Profiler Toolbar
  40. |--------------------------------------------------------------------------
  41. |
  42. | Laravel includes a beautiful profiler toolbar that gives you a heads
  43. | up display of the queries and logs performed by your application.
  44. | This is wonderful for development, but, of course, you should
  45. | disable the toolbar for production applications..
  46. |
  47. */
  48. 'profiler' => false,
  49. /*
  50. |--------------------------------------------------------------------------
  51. | Application Character Encoding
  52. |--------------------------------------------------------------------------
  53. |
  54. | The default character encoding used by your application. This encoding
  55. | will be used by the Str, Text, Form, and any other classes that need
  56. | to know what type of encoding to use for your awesome application.
  57. |
  58. */
  59. 'encoding' => 'UTF-8',
  60. /*
  61. |--------------------------------------------------------------------------
  62. | Application Language
  63. |--------------------------------------------------------------------------
  64. |
  65. | The default language of your application. This language will be used by
  66. | Lang library as the default language when doing string localization.
  67. |
  68. */
  69. 'language' => 'en',
  70. /*
  71. |--------------------------------------------------------------------------
  72. | SSL Link Generation
  73. |--------------------------------------------------------------------------
  74. |
  75. | Many sites use SSL to protect their users data. However, you may not be
  76. | able to use SSL on your development machine, meaning all HTTPS will be
  77. | broken during development.
  78. |
  79. | For this reason, you may wish to disable the generation of HTTPS links
  80. | throughout your application. This option does just that. All attempts
  81. | to generate HTTPS links will generate regular HTTP links instead.
  82. |
  83. */
  84. 'ssl' => true,
  85. /*
  86. |--------------------------------------------------------------------------
  87. | Application Timezone
  88. |--------------------------------------------------------------------------
  89. |
  90. | The default timezone of your application. The timezone will be used when
  91. | Laravel needs a date, such as when writing to a log file or travelling
  92. | to a distant star at warp speed.
  93. |
  94. */
  95. 'timezone' => 'UTC',
  96. /*
  97. |--------------------------------------------------------------------------
  98. | Class Aliases
  99. |--------------------------------------------------------------------------
  100. |
  101. | Here, you can specify any class aliases that you would like registered
  102. | when Laravel loads. Aliases are lazy-loaded, so feel free to add!
  103. |
  104. | Aliases make it more convenient to use namespaced classes. Instead of
  105. | referring to the class using its full namespace, you may simply use
  106. | the alias defined here.
  107. |
  108. */
  109. 'aliases' => array(
  110. 'Auth' => 'Laravel\\Auth',
  111. 'Asset' => 'Laravel\\Asset',
  112. 'Autoloader' => 'Laravel\\Autoloader',
  113. 'Blade' => 'Laravel\\Blade',
  114. 'Bundle' => 'Laravel\\Bundle',
  115. 'Cache' => 'Laravel\\Cache',
  116. 'Config' => 'Laravel\\Config',
  117. 'Controller' => 'Laravel\\Routing\\Controller',
  118. 'Cookie' => 'Laravel\\Cookie',
  119. 'Crypter' => 'Laravel\\Crypter',
  120. 'DB' => 'Laravel\\Database',
  121. 'Eloquent' => 'Laravel\\Database\\Eloquent\\Model',
  122. 'Event' => 'Laravel\\Event',
  123. 'File' => 'Laravel\\File',
  124. 'Filter' => 'Laravel\\Routing\\Filter',
  125. 'Form' => 'Laravel\\Form',
  126. 'Hash' => 'Laravel\\Hash',
  127. 'HTML' => 'Laravel\\HTML',
  128. 'Input' => 'Laravel\\Input',
  129. 'IoC' => 'Laravel\\IoC',
  130. 'Lang' => 'Laravel\\Lang',
  131. 'Log' => 'Laravel\\Log',
  132. 'Memcached' => 'Laravel\\Memcached',
  133. 'Paginator' => 'Laravel\\Paginator',
  134. 'Profiler' => 'Laravel\\Profiling\\Profiler',
  135. 'URL' => 'Laravel\\URL',
  136. 'Redirect' => 'Laravel\\Redirect',
  137. 'Redis' => 'Laravel\\Redis',
  138. 'Request' => 'Laravel\\Request',
  139. 'Response' => 'Laravel\\Response',
  140. 'Route' => 'Laravel\\Routing\\Route',
  141. 'Router' => 'Laravel\\Routing\\Router',
  142. 'Schema' => 'Laravel\\Database\\Schema',
  143. 'Section' => 'Laravel\\Section',
  144. 'Session' => 'Laravel\\Session',
  145. 'Str' => 'Laravel\\Str',
  146. 'Task' => 'Laravel\\CLI\\Tasks\\Task',
  147. 'URI' => 'Laravel\\URI',
  148. 'Validator' => 'Laravel\\Validator',
  149. 'View' => 'Laravel\\View',
  150. ),
  151. );