application.php 4.9 KB

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