| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,227 @@ |
| 1 |
+<?php |
|
| 2 |
+ |
|
| 3 |
+return [ |
|
| 4 |
+ |
|
| 5 |
+ /* |
|
| 6 |
+ |-------------------------------------------------------------------------- |
|
| 7 |
+ | Application Name |
|
| 8 |
+ |-------------------------------------------------------------------------- |
|
| 9 |
+ | |
|
| 10 |
+ | This value is the name of your application. This value is used when the |
|
| 11 |
+ | framework needs to place the application's name in a notification or |
|
| 12 |
+ | any other location as required by the application or its packages. |
|
| 13 |
+ | |
|
| 14 |
+ */ |
|
| 15 |
+ |
|
| 16 |
+ 'name' => env('APP_NAME', 'Laravel'),
|
|
| 17 |
+ |
|
| 18 |
+ /* |
|
| 19 |
+ |-------------------------------------------------------------------------- |
|
| 20 |
+ | Application Environment |
|
| 21 |
+ |-------------------------------------------------------------------------- |
|
| 22 |
+ | |
|
| 23 |
+ | This value determines the "environment" your application is currently |
|
| 24 |
+ | running in. This may determine how you prefer to configure various |
|
| 25 |
+ | services the application utilizes. Set this in your ".env" file. |
|
| 26 |
+ | |
|
| 27 |
+ */ |
|
| 28 |
+ |
|
| 29 |
+ 'env' => env('APP_ENV', 'production'),
|
|
| 30 |
+ |
|
| 31 |
+ /* |
|
| 32 |
+ |-------------------------------------------------------------------------- |
|
| 33 |
+ | Application Debug Mode |
|
| 34 |
+ |-------------------------------------------------------------------------- |
|
| 35 |
+ | |
|
| 36 |
+ | When your application is in debug mode, detailed error messages with |
|
| 37 |
+ | stack traces will be shown on every error that occurs within your |
|
| 38 |
+ | application. If disabled, a simple generic error page is shown. |
|
| 39 |
+ | |
|
| 40 |
+ */ |
|
| 41 |
+ |
|
| 42 |
+ 'debug' => env('APP_DEBUG', false),
|
|
| 43 |
+ |
|
| 44 |
+ /* |
|
| 45 |
+ |-------------------------------------------------------------------------- |
|
| 46 |
+ | Application URL |
|
| 47 |
+ |-------------------------------------------------------------------------- |
|
| 48 |
+ | |
|
| 49 |
+ | This URL is used by the console to properly generate URLs when using |
|
| 50 |
+ | the Artisan command line tool. You should set this to the root of |
|
| 51 |
+ | your application so that it is used when running Artisan tasks. |
|
| 52 |
+ | |
|
| 53 |
+ */ |
|
| 54 |
+ |
|
| 55 |
+ 'url' => env('APP_URL', 'http://localhost'),
|
|
| 56 |
+ |
|
| 57 |
+ /* |
|
| 58 |
+ |-------------------------------------------------------------------------- |
|
| 59 |
+ | Application Timezone |
|
| 60 |
+ |-------------------------------------------------------------------------- |
|
| 61 |
+ | |
|
| 62 |
+ | Here you may specify the default timezone for your application, which |
|
| 63 |
+ | will be used by the PHP date and date-time functions. We have gone |
|
| 64 |
+ | ahead and set this to a sensible default for you out of the box. |
|
| 65 |
+ | |
|
| 66 |
+ */ |
|
| 67 |
+ |
|
| 68 |
+ 'timezone' => 'UTC', |
|
| 69 |
+ |
|
| 70 |
+ /* |
|
| 71 |
+ |-------------------------------------------------------------------------- |
|
| 72 |
+ | Application Locale Configuration |
|
| 73 |
+ |-------------------------------------------------------------------------- |
|
| 74 |
+ | |
|
| 75 |
+ | The application locale determines the default locale that will be used |
|
| 76 |
+ | by the translation service provider. You are free to set this value |
|
| 77 |
+ | to any of the locales which will be supported by the application. |
|
| 78 |
+ | |
|
| 79 |
+ */ |
|
| 80 |
+ |
|
| 81 |
+ 'locale' => 'en', |
|
| 82 |
+ |
|
| 83 |
+ /* |
|
| 84 |
+ |-------------------------------------------------------------------------- |
|
| 85 |
+ | Application Fallback Locale |
|
| 86 |
+ |-------------------------------------------------------------------------- |
|
| 87 |
+ | |
|
| 88 |
+ | The fallback locale determines the locale to use when the current one |
|
| 89 |
+ | is not available. You may change the value to correspond to any of |
|
| 90 |
+ | the language folders that are provided through your application. |
|
| 91 |
+ | |
|
| 92 |
+ */ |
|
| 93 |
+ |
|
| 94 |
+ 'fallback_locale' => 'en', |
|
| 95 |
+ |
|
| 96 |
+ /* |
|
| 97 |
+ |-------------------------------------------------------------------------- |
|
| 98 |
+ | Faker Locale |
|
| 99 |
+ |-------------------------------------------------------------------------- |
|
| 100 |
+ | |
|
| 101 |
+ | This locale will be used by the Faker PHP library when generating fake |
|
| 102 |
+ | data for your database seeds. For example, this will be used to get |
|
| 103 |
+ | localized telephone numbers, street address information and more. |
|
| 104 |
+ | |
|
| 105 |
+ */ |
|
| 106 |
+ |
|
| 107 |
+ 'faker_locale' => 'en_US', |
|
| 108 |
+ |
|
| 109 |
+ /* |
|
| 110 |
+ |-------------------------------------------------------------------------- |
|
| 111 |
+ | Encryption Key |
|
| 112 |
+ |-------------------------------------------------------------------------- |
|
| 113 |
+ | |
|
| 114 |
+ | This key is used by the Illuminate encrypter service and should be set |
|
| 115 |
+ | to a random, 32 character string, otherwise these encrypted strings |
|
| 116 |
+ | will not be safe. Please do this before deploying an application! |
|
| 117 |
+ | |
|
| 118 |
+ */ |
|
| 119 |
+ |
|
| 120 |
+ 'key' => env('APP_KEY'),
|
|
| 121 |
+ |
|
| 122 |
+ 'cipher' => 'AES-256-CBC', |
|
| 123 |
+ |
|
| 124 |
+ /* |
|
| 125 |
+ |-------------------------------------------------------------------------- |
|
| 126 |
+ | Autoloaded Service Providers |
|
| 127 |
+ |-------------------------------------------------------------------------- |
|
| 128 |
+ | |
|
| 129 |
+ | The service providers listed here will be automatically loaded on the |
|
| 130 |
+ | request to your application. Feel free to add your own services to |
|
| 131 |
+ | this array to grant expanded functionality to your applications. |
|
| 132 |
+ | |
|
| 133 |
+ */ |
|
| 134 |
+ |
|
| 135 |
+ 'providers' => [ |
|
| 136 |
+ |
|
| 137 |
+ /* |
|
| 138 |
+ * Laravel Framework Service Providers... |
|
| 139 |
+ */ |
|
| 140 |
+ Illuminate\Auth\AuthServiceProvider::class, |
|
| 141 |
+ Illuminate\Broadcasting\BroadcastServiceProvider::class, |
|
| 142 |
+ Illuminate\Bus\BusServiceProvider::class, |
|
| 143 |
+ Illuminate\Cache\CacheServiceProvider::class, |
|
| 144 |
+ Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, |
|
| 145 |
+ Illuminate\Cookie\CookieServiceProvider::class, |
|
| 146 |
+ Illuminate\Database\DatabaseServiceProvider::class, |
|
| 147 |
+ Illuminate\Encryption\EncryptionServiceProvider::class, |
|
| 148 |
+ Illuminate\Filesystem\FilesystemServiceProvider::class, |
|
| 149 |
+ Illuminate\Foundation\Providers\FoundationServiceProvider::class, |
|
| 150 |
+ Illuminate\Hashing\HashServiceProvider::class, |
|
| 151 |
+ Illuminate\Mail\MailServiceProvider::class, |
|
| 152 |
+ Illuminate\Notifications\NotificationServiceProvider::class, |
|
| 153 |
+ Illuminate\Pagination\PaginationServiceProvider::class, |
|
| 154 |
+ Illuminate\Pipeline\PipelineServiceProvider::class, |
|
| 155 |
+ Illuminate\Queue\QueueServiceProvider::class, |
|
| 156 |
+ Illuminate\Redis\RedisServiceProvider::class, |
|
| 157 |
+ Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, |
|
| 158 |
+ Illuminate\Session\SessionServiceProvider::class, |
|
| 159 |
+ Illuminate\Translation\TranslationServiceProvider::class, |
|
| 160 |
+ Illuminate\Validation\ValidationServiceProvider::class, |
|
| 161 |
+ Illuminate\View\ViewServiceProvider::class, |
|
| 162 |
+ |
|
| 163 |
+ /* |
|
| 164 |
+ * Package Service Providers... |
|
| 165 |
+ */ |
|
| 166 |
+ |
|
| 167 |
+ /* |
|
| 168 |
+ * Application Service Providers... |
|
| 169 |
+ */ |
|
| 170 |
+ App\Providers\AppServiceProvider::class, |
|
| 171 |
+ App\Providers\AuthServiceProvider::class, |
|
| 172 |
+ // App\Providers\BroadcastServiceProvider::class, |
|
| 173 |
+ App\Providers\EventServiceProvider::class, |
|
| 174 |
+ App\Providers\RouteServiceProvider::class, |
|
| 175 |
+ |
|
| 176 |
+ ], |
|
| 177 |
+ |
|
| 178 |
+ /* |
|
| 179 |
+ |-------------------------------------------------------------------------- |
|
| 180 |
+ | Class Aliases |
|
| 181 |
+ |-------------------------------------------------------------------------- |
|
| 182 |
+ | |
|
| 183 |
+ | This array of class aliases will be registered when this application |
|
| 184 |
+ | is started. However, feel free to register as many as you wish as |
|
| 185 |
+ | the aliases are "lazy" loaded so they don't hinder performance. |
|
| 186 |
+ | |
|
| 187 |
+ */ |
|
| 188 |
+ |
|
| 189 |
+ 'aliases' => [ |
|
| 190 |
+ |
|
| 191 |
+ 'App' => Illuminate\Support\Facades\App::class, |
|
| 192 |
+ 'Artisan' => Illuminate\Support\Facades\Artisan::class, |
|
| 193 |
+ 'Auth' => Illuminate\Support\Facades\Auth::class, |
|
| 194 |
+ 'Blade' => Illuminate\Support\Facades\Blade::class, |
|
| 195 |
+ 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, |
|
| 196 |
+ 'Bus' => Illuminate\Support\Facades\Bus::class, |
|
| 197 |
+ 'Cache' => Illuminate\Support\Facades\Cache::class, |
|
| 198 |
+ 'Config' => Illuminate\Support\Facades\Config::class, |
|
| 199 |
+ 'Cookie' => Illuminate\Support\Facades\Cookie::class, |
|
| 200 |
+ 'Crypt' => Illuminate\Support\Facades\Crypt::class, |
|
| 201 |
+ 'DB' => Illuminate\Support\Facades\DB::class, |
|
| 202 |
+ 'Eloquent' => Illuminate\Database\Eloquent\Model::class, |
|
| 203 |
+ 'Event' => Illuminate\Support\Facades\Event::class, |
|
| 204 |
+ 'File' => Illuminate\Support\Facades\File::class, |
|
| 205 |
+ 'Gate' => Illuminate\Support\Facades\Gate::class, |
|
| 206 |
+ 'Hash' => Illuminate\Support\Facades\Hash::class, |
|
| 207 |
+ 'Lang' => Illuminate\Support\Facades\Lang::class, |
|
| 208 |
+ 'Log' => Illuminate\Support\Facades\Log::class, |
|
| 209 |
+ 'Mail' => Illuminate\Support\Facades\Mail::class, |
|
| 210 |
+ 'Notification' => Illuminate\Support\Facades\Notification::class, |
|
| 211 |
+ 'Password' => Illuminate\Support\Facades\Password::class, |
|
| 212 |
+ 'Queue' => Illuminate\Support\Facades\Queue::class, |
|
| 213 |
+ 'Redirect' => Illuminate\Support\Facades\Redirect::class, |
|
| 214 |
+ 'Redis' => Illuminate\Support\Facades\Redis::class, |
|
| 215 |
+ 'Request' => Illuminate\Support\Facades\Request::class, |
|
| 216 |
+ 'Response' => Illuminate\Support\Facades\Response::class, |
|
| 217 |
+ 'Route' => Illuminate\Support\Facades\Route::class, |
|
| 218 |
+ 'Schema' => Illuminate\Support\Facades\Schema::class, |
|
| 219 |
+ 'Session' => Illuminate\Support\Facades\Session::class, |
|
| 220 |
+ 'Storage' => Illuminate\Support\Facades\Storage::class, |
|
| 221 |
+ 'URL' => Illuminate\Support\Facades\URL::class, |
|
| 222 |
+ 'Validator' => Illuminate\Support\Facades\Validator::class, |
|
| 223 |
+ 'View' => Illuminate\Support\Facades\View::class, |
|
| 224 |
+ |
|
| 225 |
+ ], |
|
| 226 |
+ |
|
| 227 |
+]; |