|
| 1 | +<?php |
| 2 | + |
| 3 | +return array( |
| 4 | + |
| 5 | + /* |
| 6 | + |-------------------------------------------------------------------------- |
| 7 | + | Application URL |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | |
| 10 | + | The URL used to access your application without a trailing slash. The URL |
| 11 | + | does not have to be set. If it isn't, we'll try our best to guess the URL |
| 12 | + | of your application. |
| 13 | + | |
| 14 | + */ |
| 15 | + |
| 16 | + 'url' => '', |
| 17 | + |
| 18 | + /* |
| 19 | + |-------------------------------------------------------------------------- |
| 20 | + | Asset URL |
| 21 | + |-------------------------------------------------------------------------- |
| 22 | + | |
| 23 | + | The base URL used for your application's asset files. This is useful if |
| 24 | + | you are serving your assets through a different server or a CDN. If it |
| 25 | + | is not set, we'll default to the application URL above. |
| 26 | + | |
| 27 | + */ |
| 28 | + |
| 29 | + 'asset_url' => '', |
| 30 | + |
| 31 | + /* |
| 32 | + |-------------------------------------------------------------------------- |
| 33 | + | Application Index |
| 34 | + |-------------------------------------------------------------------------- |
| 35 | + | |
| 36 | + | If you are including the "index.php" in your URLs, you can ignore this. |
| 37 | + | However, if you are using mod_rewrite to get cleaner URLs, just set |
| 38 | + | this option to an empty string and we'll take care of the rest. |
| 39 | + | |
| 40 | + */ |
| 41 | + |
| 42 | + 'index' => '', |
| 43 | + |
| 44 | + /* |
| 45 | + |-------------------------------------------------------------------------- |
| 46 | + | Application Key |
| 47 | + |-------------------------------------------------------------------------- |
| 48 | + | |
| 49 | + | This key is used by the encryption and cookie classes to generate secure |
| 50 | + | encrypted strings and hashes. It is extremely important that this key |
| 51 | + | remains secret and it should not be shared with anyone. Make it about 32 |
| 52 | + | characters of random gibberish. |
| 53 | + | |
| 54 | + */ |
| 55 | + |
| 56 | + 'key' => 'YourSecretKeyGoesHere!', |
| 57 | + |
| 58 | + /* |
| 59 | + |-------------------------------------------------------------------------- |
| 60 | + | Profiler Toolbar |
| 61 | + |-------------------------------------------------------------------------- |
| 62 | + | |
| 63 | + | Laravel includes a beautiful profiler toolbar that gives you a heads |
| 64 | + | up display of the queries and logs performed by your application. |
| 65 | + | This is wonderful for development, but, of course, you should |
| 66 | + | disable the toolbar for production applications. |
| 67 | + | |
| 68 | + */ |
| 69 | + |
| 70 | + 'profiler' => false, |
| 71 | + |
| 72 | + /* |
| 73 | + |-------------------------------------------------------------------------- |
| 74 | + | Application Character Encoding |
| 75 | + |-------------------------------------------------------------------------- |
| 76 | + | |
| 77 | + | The default character encoding used by your application. This encoding |
| 78 | + | will be used by the Str, Text, Form, and any other classes that need |
| 79 | + | to know what type of encoding to use for your awesome application. |
| 80 | + | |
| 81 | + */ |
| 82 | + |
| 83 | + 'encoding' => 'UTF-8', |
| 84 | + |
| 85 | + /* |
| 86 | + |-------------------------------------------------------------------------- |
| 87 | + | Default Application Language |
| 88 | + |-------------------------------------------------------------------------- |
| 89 | + | |
| 90 | + | The default language of your application. This language will be used by |
| 91 | + | Lang library as the default language when doing string localization. |
| 92 | + | |
| 93 | + */ |
| 94 | + |
| 95 | + 'language' => 'es', |
| 96 | + |
| 97 | + /* |
| 98 | + |-------------------------------------------------------------------------- |
| 99 | + | Supported Languages |
| 100 | + |-------------------------------------------------------------------------- |
| 101 | + | |
| 102 | + | These languages may also be supported by your application. If a request |
| 103 | + | enters your application with a URI beginning with one of these values |
| 104 | + | the default language will automatically be set to that language. |
| 105 | + | |
| 106 | + */ |
| 107 | + |
| 108 | + 'languages' => array(), |
| 109 | + |
| 110 | + /* |
| 111 | + |-------------------------------------------------------------------------- |
| 112 | + | SSL Link Generation |
| 113 | + |-------------------------------------------------------------------------- |
| 114 | + | |
| 115 | + | Many sites use SSL to protect their users' data. However, you may not be |
| 116 | + | able to use SSL on your development machine, meaning all HTTPS will be |
| 117 | + | broken during development. |
| 118 | + | |
| 119 | + | For this reason, you may wish to disable the generation of HTTPS links |
| 120 | + | throughout your application. This option does just that. All attempts |
| 121 | + | to generate HTTPS links will generate regular HTTP links instead. |
| 122 | + | |
| 123 | + */ |
| 124 | + |
| 125 | + 'ssl' => true, |
| 126 | + |
| 127 | + /* |
| 128 | + |-------------------------------------------------------------------------- |
| 129 | + | Application Timezone |
| 130 | + |-------------------------------------------------------------------------- |
| 131 | + | |
| 132 | + | The default timezone of your application. The timezone will be used when |
| 133 | + | Laravel needs a date, such as when writing to a log file or travelling |
| 134 | + | to a distant star at warp speed. |
| 135 | + | |
| 136 | + */ |
| 137 | + |
| 138 | + 'timezone' => 'UTC', |
| 139 | + |
| 140 | + /* |
| 141 | + |-------------------------------------------------------------------------- |
| 142 | + | Class Aliases |
| 143 | + |-------------------------------------------------------------------------- |
| 144 | + | |
| 145 | + | Here, you can specify any class aliases that you would like registered |
| 146 | + | when Laravel loads. Aliases are lazy-loaded, so feel free to add! |
| 147 | + | |
| 148 | + | Aliases make it more convenient to use namespaced classes. Instead of |
| 149 | + | referring to the class using its full namespace, you may simply use |
| 150 | + | the alias defined here. |
| 151 | + | |
| 152 | + */ |
| 153 | + |
| 154 | + 'aliases' => array( |
| 155 | + 'Auth' => 'Laravel\\Auth', |
| 156 | + 'Authenticator' => 'Laravel\\Auth\\Drivers\\Driver', |
| 157 | + 'Asset' => 'Laravel\\Asset', |
| 158 | + 'Autoloader' => 'Laravel\\Autoloader', |
| 159 | + 'Blade' => 'Laravel\\Blade', |
| 160 | + 'Bundle' => 'Laravel\\Bundle', |
| 161 | + 'Cache' => 'Laravel\\Cache', |
| 162 | + 'Command' => 'Laravel\\CLI\\Command', |
| 163 | + 'Config' => 'Laravel\\Config', |
| 164 | + 'Controller' => 'Laravel\\Routing\\Controller', |
| 165 | + 'Cookie' => 'Laravel\\Cookie', |
| 166 | + 'Crypter' => 'Laravel\\Crypter', |
| 167 | + 'DB' => 'Laravel\\Database', |
| 168 | + 'Eloquent' => 'Laravel\\Database\\Eloquent\\Model', |
| 169 | + 'Event' => 'Laravel\\Event', |
| 170 | + 'File' => 'Laravel\\File', |
| 171 | + 'Filter' => 'Laravel\\Routing\\Filter', |
| 172 | + 'Form' => 'Laravel\\Form', |
| 173 | + 'Hash' => 'Laravel\\Hash', |
| 174 | + 'HTML' => 'Laravel\\HTML', |
| 175 | + 'Input' => 'Laravel\\Input', |
| 176 | + 'IoC' => 'Laravel\\IoC', |
| 177 | + 'Lang' => 'Laravel\\Lang', |
| 178 | + 'Log' => 'Laravel\\Log', |
| 179 | + 'Memcached' => 'Laravel\\Memcached', |
| 180 | + //'Paginator' => 'Laravel\\Paginator', |
| 181 | + 'Profiler' => 'Laravel\\Profiling\\Profiler', |
| 182 | + 'URL' => 'Laravel\\URL', |
| 183 | + 'Redirect' => 'Laravel\\Redirect', |
| 184 | + 'Redis' => 'Laravel\\Redis', |
| 185 | + 'Request' => 'Laravel\\Request', |
| 186 | + 'Response' => 'Laravel\\Response', |
| 187 | + 'Route' => 'Laravel\\Routing\\Route', |
| 188 | + 'Router' => 'Laravel\\Routing\\Router', |
| 189 | + 'Schema' => 'Laravel\\Database\\Schema', |
| 190 | + 'Section' => 'Laravel\\Section', |
| 191 | + 'Session' => 'Laravel\\Session', |
| 192 | + 'Str' => 'Laravel\\Str', |
| 193 | + 'Task' => 'Laravel\\CLI\\Tasks\\Task', |
| 194 | + 'URI' => 'Laravel\\URI', |
| 195 | + 'Validator' => 'Laravel\\Validator', |
| 196 | + 'View' => 'Laravel\\View', |
| 197 | + 'Alert' => 'Bootstrapper\\Alert', |
| 198 | + 'Badge' => 'Bootstrapper\\Badge', |
| 199 | + 'Breadcrumb' => 'Bootstrapper\\Breadcrumb', |
| 200 | + 'Button' => 'Bootstrapper\\Button', |
| 201 | + 'ButtonGroup' => 'Bootstrapper\\ButtonGroup', |
| 202 | + 'ButtonToolbar' => 'Bootstrapper\\ButtonToolbar', |
| 203 | + 'Carousel' => 'Bootstrapper\\Carousel', |
| 204 | + 'DropdownButton' => 'Bootstrapper\\DropdownButton', |
| 205 | + 'Form' => 'Bootstrapper\\Form', |
| 206 | + 'Helpers' => 'Bootstrapper\\Helpers', |
| 207 | + 'Icon' => 'Bootstrapper\\Icon', |
| 208 | + 'Image' => 'Bootstrapper\\Image', |
| 209 | + 'Label' => 'Bootstrapper\\Label', |
| 210 | + 'MediaObject' => 'Bootstrapper\\MediaObject', |
| 211 | + 'Navbar' => 'Bootstrapper\\Navbar', |
| 212 | + 'Navigation' => 'Bootstrapper\\Navigation', |
| 213 | + 'Paginator' => 'Bootstrapper\\Paginator', |
| 214 | + 'Progress' => 'Bootstrapper\\Progress', |
| 215 | + 'Tabbable' => 'Bootstrapper\\Tabbable', |
| 216 | + 'Table' => 'Bootstrapper\\Table', |
| 217 | + 'Thumbnail' => 'Bootstrapper\\Thumbnail', |
| 218 | + 'Typeahead' => 'Bootstrapper\\Typeahead', |
| 219 | + 'Typography' => 'Bootstrapper\\Typography', |
| 220 | + ), |
| 221 | +); |
0 commit comments