123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- return array(
- /*
- |--------------------------------------------------------------------------
- | Application URL
- |--------------------------------------------------------------------------
- |
- | The URL used to access your application. No trailing slash.
- |
- */
- 'url' => 'http://localhost',
- /*
- |--------------------------------------------------------------------------
- | Application Index
- |--------------------------------------------------------------------------
- |
- | If you are including the "index.php" in your URLs, you can ignore this.
- |
- | However, if you are using mod_rewrite or something similar to get
- | cleaner URLs, set this option to an empty string.
- |
- */
- 'index' => 'index.php',
- /*
- |--------------------------------------------------------------------------
- | Application Language
- |--------------------------------------------------------------------------
- |
- | The default language of your application. This language will be used by
- | Lang library as the default language when doing string localization.
- |
- */
- 'language' => 'en',
- /*
- |--------------------------------------------------------------------------
- | Application Character Encoding
- |--------------------------------------------------------------------------
- |
- | The default character encoding used by your application. This is the
- | character encoding that will be used by the Str, Text, and Form classes.
- |
- */
- 'encoding' => 'UTF-8',
- /*
- |--------------------------------------------------------------------------
- | Application Timezone
- |--------------------------------------------------------------------------
- |
- | The default timezone of your application. This timezone will be used when
- | Laravel needs a date, such as when writing to a log file.
- |
- */
- 'timezone' => 'UTC',
- /*
- |--------------------------------------------------------------------------
- | Auto-Loaded Packages
- |--------------------------------------------------------------------------
- |
- | The packages that should be auto-loaded each time Laravel handles
- | a request. These should generally be packages that you use on almost
- | every request to your application.
- |
- | Each package specified here will be bootstrapped and can be conveniently
- | used by your application's routes, models, and libraries.
- |
- | Note: The package names in this array should correspond to a package
- | directory in application/packages.
- |
- */
- 'packages' => array(),
- /*
- |--------------------------------------------------------------------------
- | Active Modules
- |--------------------------------------------------------------------------
- |
- | Modules are a convenient way to organize your application into logical
- | components. Each module may have its own libraries, models, routes,
- | views, language files, and configuration.
- |
- | Here you may specify which modules are "active" for your application.
- | This simply gives Laravel an easy way to know which directories to
- | check when auto-loading your classes, routes, and views.
- |
- */
- 'modules' => array(),
- /*
- |--------------------------------------------------------------------------
- | Application Key
- |--------------------------------------------------------------------------
- |
- | Your application key should be a 32 character string that is totally
- | random and secret. This key is used by the encryption class to generate
- | secure, encrypted strings.
- |
- */
- 'key' => '',
- );
|