|
@@ -21,7 +21,6 @@ return array(
|
|
|--------------------------------------------------------------------------
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
| If you are including the "index.php" in your URLs, you can ignore this.
|
|
| If you are including the "index.php" in your URLs, you can ignore this.
|
|
- |
|
|
|
|
| However, if you are using mod_rewrite to get cleaner URLs, just set
|
|
| However, if you are using mod_rewrite to get cleaner URLs, just set
|
|
| this option to an empty string and we'll take care of the rest.
|
|
| this option to an empty string and we'll take care of the rest.
|
|
|
|
|
|
|
|
@@ -73,13 +72,13 @@ return array(
|
|
| SSL Link Generation
|
|
| SSL Link Generation
|
|
|--------------------------------------------------------------------------
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
- | Many sites use SSL to protect their users data. However, you may not
|
|
+ | Many sites use SSL to protect their users data. However, you may not be
|
|
- | always be able to use SSL on your development machine, meaning all HTTPS
|
|
+ | able to use SSL on your development machine, meaning all HTTPS will be
|
|
- | will be broken during development.
|
|
+ | broken during development.
|
|
|
|
|
|
|
|
| For this reason, you may wish to disable the generation of HTTPS links
|
|
| For this reason, you may wish to disable the generation of HTTPS links
|
|
- | throughout your application. This option does just that. All attempts to
|
|
+ | throughout your application. This option does just that. All attempts
|
|
- | generate HTTPS links will generate regular HTTP links instead.
|
|
+ | to generate HTTPS links will generate regular HTTP links instead.
|
|
|
|
|
|
|
|
*/
|
|
*/
|
|
|
|
|
|
@@ -90,7 +89,7 @@ return array(
|
|
| Application Timezone
|
|
| Application Timezone
|
|
|--------------------------------------------------------------------------
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
- | The default timezone of your application. This timezone will be used when
|
|
+ | The default timezone of your application. The timezone will be used when
|
|
| Laravel needs a date, such as when writing to a log file or travelling
|
|
| Laravel needs a date, such as when writing to a log file or travelling
|
|
| to a distant star at warp speed.
|
|
| to a distant star at warp speed.
|
|
|
|
|
|
|
|
@@ -98,20 +97,41 @@ return array(
|
|
|
|
|
|
'timezone' => 'UTC',
|
|
'timezone' => 'UTC',
|
|
|
|
|
|
|
|
+
|
|
|
|
+ |--------------------------------------------------------------------------
|
|
|
|
+ | Bundle Options
|
|
|
|
+ |--------------------------------------------------------------------------
|
|
|
|
+ |
|
|
|
|
+ | Here you may specify options related to application bundles, such as the
|
|
|
|
+ | amount of time the bundle manifest is cached. Each option is detailed
|
|
|
|
+ | below with suggestions for sensible values.
|
|
|
|
+ |
|
|
|
|
+ | Cache:
|
|
|
|
+ |
|
|
|
|
+ | All bundles have a "bundle.info" file which contains information such
|
|
|
|
+ | as the name of a bundle and the URIs it responds to. This value is
|
|
|
|
+ | the number of that bundle info is cached.
|
|
|
|
+ |
|
|
|
|
+ */
|
|
|
|
+
|
|
|
|
+ 'bundle' => array(
|
|
|
|
+
|
|
|
|
+ 'cache' => 0,
|
|
|
|
+
|
|
|
|
+ ),
|
|
|
|
+
|
|
|
|
|
|
|--------------------------------------------------------------------------
|
|
|--------------------------------------------------------------------------
|
|
| Class Aliases
|
|
| Class Aliases
|
|
|--------------------------------------------------------------------------
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
| Here, you can specify any class aliases that you would like registered
|
|
| Here, you can specify any class aliases that you would like registered
|
|
- | when Laravel loads. Aliases are lazy-loaded, so add as many as you want.
|
|
+ | when Laravel loads. Aliases are lazy-loaded, so feel free to add!
|
|
|
|
|
|
|
|
| Aliases make it more convenient to use namespaced classes. Instead of
|
|
| Aliases make it more convenient to use namespaced classes. Instead of
|
|
| referring to the class using its full namespace, you may simply use
|
|
| referring to the class using its full namespace, you may simply use
|
|
| the alias defined here.
|
|
| the alias defined here.
|
|
|
|
|
|
|
|
- | We have already aliased common Laravel classes to make life easier.
|
|
|
|
- |
|
|
|
|
*/
|
|
*/
|
|
|
|
|
|
'aliases' => array(
|
|
'aliases' => array(
|