application.php 5.1 KB

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