PageRenderTime 26ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/application/config/application.php

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