application.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application URL
  6. |--------------------------------------------------------------------------
  7. |
  8. | The URL used to access your application. The trailing slash is optional.
  9. |
  10. | Note: Remove "index.php" from this URL when using mod_rewrite.
  11. |
  12. */
  13. 'url' => 'http://localhost/index.php',
  14. /*
  15. |--------------------------------------------------------------------------
  16. | Application Language
  17. |--------------------------------------------------------------------------
  18. |
  19. | The default language of your application. This language will be used by
  20. | default by the Lang library when doing string localization.
  21. |
  22. | If you are not using the Lang library, this option isn't really important.
  23. |
  24. */
  25. 'language' => 'en',
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Application Timezone
  29. |--------------------------------------------------------------------------
  30. |
  31. | The default timezone of your application. This timezone will be used when
  32. | Laravel needs a date, such as when writing to a log file.
  33. |
  34. */
  35. 'timezone' => 'UTC',
  36. /*
  37. |--------------------------------------------------------------------------
  38. | Application Key
  39. |--------------------------------------------------------------------------
  40. |
  41. | Your application key should be a 32 character string that is totally
  42. | random and secret. This key is used by the encryption class to generate
  43. | secure, encrypted strings.
  44. |
  45. | If you will not be using the encryption class, this doesn't matter.
  46. |
  47. */
  48. 'key' => '',
  49. /*
  50. |--------------------------------------------------------------------------
  51. | Class Aliases
  52. |--------------------------------------------------------------------------
  53. |
  54. | Here, you can specify any class aliases that you would like registered
  55. | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
  56. |
  57. | We have already setup a few to make your life easier.
  58. |
  59. */
  60. 'aliases' => array(
  61. 'Auth' => 'System\\Auth',
  62. 'Benchmark' => 'System\\Benchmark',
  63. 'Cache' => 'System\\Cache',
  64. 'Config' => 'System\\Config',
  65. 'Cookie' => 'System\\Cookie',
  66. 'Crypt' => 'System\\Crypt',
  67. 'Date' => 'System\\Date',
  68. 'DB' => 'System\\DB',
  69. 'Download' => 'System\\Download',
  70. 'Eloquent' => 'System\\DB\\Eloquent',
  71. 'Form' => 'System\\Form',
  72. 'Hash' => 'System\\Hash',
  73. 'HTML' => 'System\\HTML',
  74. 'Inflector' => 'System\\Inflector',
  75. 'Input' => 'System\\Input',
  76. 'Lang' => 'System\\Lang',
  77. 'URL' => 'System\\URL',
  78. 'Redirect' => 'System\\Redirect',
  79. 'Request' => 'System\\Request',
  80. 'Response' => 'System\\Response',
  81. 'Session' => 'System\\Session',
  82. 'Str' => 'System\\Str',
  83. 'Text' => 'System\\Text',
  84. 'View' => 'System\View',
  85. ),
  86. );