|
| 1 | +<?php |
| 2 | + |
| 3 | +return array( |
| 4 | + |
| 5 | + /* |
| 6 | + |-------------------------------------------------------------------------- |
| 7 | + | Application Debug Mode |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | |
| 10 | + | When your application is in debug mode, detailed error messages with |
| 11 | + | stack traces will be shown on every error that occurs within your |
| 12 | + | application. If disabled, a simple generic error page is shown. |
| 13 | + | |
| 14 | + */ |
| 15 | + |
| 16 | + 'debug' => true, |
| 17 | + |
| 18 | + /* |
| 19 | + |-------------------------------------------------------------------------- |
| 20 | + | Application URL |
| 21 | + |-------------------------------------------------------------------------- |
| 22 | + | |
| 23 | + | This URL is used by the console to properly generate URLs when using |
| 24 | + | the Artisan command line tool. You should set this to the root of |
| 25 | + | your application so that it is used when running Artisan tasks. |
| 26 | + | |
| 27 | + */ |
| 28 | + |
| 29 | + 'url' => 'http://localhost', |
| 30 | + |
| 31 | + /* |
| 32 | + |-------------------------------------------------------------------------- |
| 33 | + | Application Timezone |
| 34 | + |-------------------------------------------------------------------------- |
| 35 | + | |
| 36 | + | Here you may specify the default timezone for your application, which |
| 37 | + | will be used by the PHP date and date-time functions. We have gone |
| 38 | + | ahead and set this to a sensible default for you out of the box. |
| 39 | + | |
| 40 | + */ |
| 41 | + |
| 42 | + 'timezone' => 'UTC', |
| 43 | + |
| 44 | + /* |
| 45 | + |-------------------------------------------------------------------------- |
| 46 | + | Application Locale Configuration |
| 47 | + |-------------------------------------------------------------------------- |
| 48 | + | |
| 49 | + | The application locale determines the default locale that will be used |
| 50 | + | by the translation service provider. You are free to set this value |
| 51 | + | to any of the locales which will be supported by the application. |
| 52 | + | |
| 53 | + */ |
| 54 | + |
| 55 | + 'locale' => 'en', |
| 56 | + |
| 57 | + /* |
| 58 | + |-------------------------------------------------------------------------- |
| 59 | + | Encryption Key |
| 60 | + |-------------------------------------------------------------------------- |
| 61 | + | |
| 62 | + | This key is used by the Illuminate encrypter service and should be set |
| 63 | + | to a random, 32 character string, otherwise these encrypted strings |
| 64 | + | will not be safe. Please do this before deploying an application! |
| 65 | + | |
| 66 | + */ |
| 67 | + |
| 68 | + 'key' => 'YourSecretKey!!!', |
| 69 | + |
| 70 | + /* |
| 71 | + |-------------------------------------------------------------------------- |
| 72 | + | Autoloaded Service Providers |
| 73 | + |-------------------------------------------------------------------------- |
| 74 | + | |
| 75 | + | The service providers listed here will be automatically loaded on the |
| 76 | + | request to your application. Feel free to add your own services to |
| 77 | + | this array to grant expanded functionality to your applications. |
| 78 | + | |
| 79 | + */ |
| 80 | + |
| 81 | + 'providers' => array( |
| 82 | + |
| 83 | + 'Illuminate\Foundation\Providers\ArtisanServiceProvider', |
| 84 | + 'Illuminate\Auth\AuthServiceProvider', |
| 85 | + 'Illuminate\Cache\CacheServiceProvider', |
| 86 | + 'Illuminate\Foundation\Providers\CommandCreatorServiceProvider', |
| 87 | + 'Illuminate\Session\CommandsServiceProvider', |
| 88 | + 'Illuminate\Foundation\Providers\ComposerServiceProvider', |
| 89 | + 'Illuminate\Routing\ControllerServiceProvider', |
| 90 | + 'Illuminate\Cookie\CookieServiceProvider', |
| 91 | + 'Illuminate\Database\DatabaseServiceProvider', |
| 92 | + 'Illuminate\Encryption\EncryptionServiceProvider', |
| 93 | + 'Illuminate\Filesystem\FilesystemServiceProvider', |
| 94 | + 'Illuminate\Hashing\HashServiceProvider', |
| 95 | + 'Illuminate\Html\HtmlServiceProvider', |
| 96 | + 'Illuminate\Foundation\Providers\KeyGeneratorServiceProvider', |
| 97 | + 'Illuminate\Log\LogServiceProvider', |
| 98 | + 'Illuminate\Mail\MailServiceProvider', |
| 99 | + 'Illuminate\Foundation\Providers\MaintenanceServiceProvider', |
| 100 | + 'Illuminate\Database\MigrationServiceProvider', |
| 101 | + 'Illuminate\Foundation\Providers\OptimizeServiceProvider', |
| 102 | + 'Illuminate\Pagination\PaginationServiceProvider', |
| 103 | + 'Illuminate\Foundation\Providers\PublisherServiceProvider', |
| 104 | + 'Illuminate\Queue\QueueServiceProvider', |
| 105 | + 'Illuminate\Redis\RedisServiceProvider', |
| 106 | + 'Illuminate\Auth\Reminders\ReminderServiceProvider', |
| 107 | + 'Illuminate\Foundation\Providers\RouteListServiceProvider', |
| 108 | + 'Illuminate\Database\SeedServiceProvider', |
| 109 | + 'Illuminate\Foundation\Providers\ServerServiceProvider', |
| 110 | + 'Illuminate\Session\SessionServiceProvider', |
| 111 | + 'Illuminate\Foundation\Providers\TinkerServiceProvider', |
| 112 | + 'Illuminate\Translation\TranslationServiceProvider', |
| 113 | + 'Illuminate\Validation\ValidationServiceProvider', |
| 114 | + 'Illuminate\View\ViewServiceProvider', |
| 115 | + 'Illuminate\Workbench\WorkbenchServiceProvider', |
| 116 | + |
| 117 | + ), |
| 118 | + |
| 119 | + /* |
| 120 | + |-------------------------------------------------------------------------- |
| 121 | + | Service Provider Manifest |
| 122 | + |-------------------------------------------------------------------------- |
| 123 | + | |
| 124 | + | The service provider manifest is used by Laravel to lazy load service |
| 125 | + | providers which are not needed for each request, as well to keep a |
| 126 | + | list of all of the services. Here, you may set its storage spot. |
| 127 | + | |
| 128 | + */ |
| 129 | + |
| 130 | + 'manifest' => storage_path().'/meta', |
| 131 | + |
| 132 | + /* |
| 133 | + |-------------------------------------------------------------------------- |
| 134 | + | Class Aliases |
| 135 | + |-------------------------------------------------------------------------- |
| 136 | + | |
| 137 | + | This array of class aliases will be registered when this application |
| 138 | + | is started. However, feel free to register as many as you wish as |
| 139 | + | the aliases are "lazy" loaded so they don't hinder performance. |
| 140 | + | |
| 141 | + */ |
| 142 | + |
| 143 | + 'aliases' => array( |
| 144 | + |
| 145 | + 'App' => 'Illuminate\Support\Facades\App', |
| 146 | + 'Artisan' => 'Illuminate\Support\Facades\Artisan', |
| 147 | + 'Auth' => 'Illuminate\Support\Facades\Auth', |
| 148 | + 'Blade' => 'Illuminate\Support\Facades\Blade', |
| 149 | + 'Cache' => 'Illuminate\Support\Facades\Cache', |
| 150 | + 'ClassLoader' => 'Illuminate\Support\ClassLoader', |
| 151 | + 'Config' => 'Illuminate\Support\Facades\Config', |
| 152 | + 'Controller' => 'Illuminate\Routing\Controllers\Controller', |
| 153 | + 'Cookie' => 'Illuminate\Support\Facades\Cookie', |
| 154 | + 'Crypt' => 'Illuminate\Support\Facades\Crypt', |
| 155 | + 'DB' => 'Illuminate\Support\Facades\DB', |
| 156 | + 'Eloquent' => 'Illuminate\Database\Eloquent\Model', |
| 157 | + 'Event' => 'Illuminate\Support\Facades\Event', |
| 158 | + 'File' => 'Illuminate\Support\Facades\File', |
| 159 | + 'Form' => 'Illuminate\Support\Facades\Form', |
| 160 | + 'Hash' => 'Illuminate\Support\Facades\Hash', |
| 161 | + 'HTML' => 'Illuminate\Support\Facades\HTML', |
| 162 | + 'Input' => 'Illuminate\Support\Facades\Input', |
| 163 | + 'Lang' => 'Illuminate\Support\Facades\Lang', |
| 164 | + 'Log' => 'Illuminate\Support\Facades\Log', |
| 165 | + 'Mail' => 'Illuminate\Support\Facades\Mail', |
| 166 | + 'Paginator' => 'Illuminate\Support\Facades\Paginator', |
| 167 | + 'Password' => 'Illuminate\Support\Facades\Password', |
| 168 | + 'Queue' => 'Illuminate\Support\Facades\Queue', |
| 169 | + 'Redirect' => 'Illuminate\Support\Facades\Redirect', |
| 170 | + 'Redis' => 'Illuminate\Support\Facades\Redis', |
| 171 | + 'Request' => 'Illuminate\Support\Facades\Request', |
| 172 | + 'Response' => 'Illuminate\Support\Facades\Response', |
| 173 | + 'Route' => 'Illuminate\Support\Facades\Route', |
| 174 | + 'Schema' => 'Illuminate\Support\Facades\Schema', |
| 175 | + 'Seeder' => 'Illuminate\Database\Seeder', |
| 176 | + 'Session' => 'Illuminate\Support\Facades\Session', |
| 177 | + 'Str' => 'Illuminate\Support\Str', |
| 178 | + 'URL' => 'Illuminate\Support\Facades\URL', |
| 179 | + 'Validator' => 'Illuminate\Support\Facades\Validator', |
| 180 | + 'View' => 'Illuminate\Support\Facades\View', |
| 181 | + |
| 182 | + ), |
| 183 | + |
| 184 | +); |
0 commit comments