|
11 | 11 | | framework needs to place the application's name in a notification or
|
12 | 12 | | any other location as required by the application or its packages.
|
13 | 13 | |
|
14 |
| - */ |
| 14 | + */ |
15 | 15 |
|
16 |
| - 'name' => env('APP_NAME', 'Laravel'), |
| 16 | + 'name' => env('APP_NAME', 'Laravel'), |
17 | 17 |
|
18 | 18 | /*
|
19 | 19 | |--------------------------------------------------------------------------
|
|
24 | 24 | | running in. This may determine how you prefer to configure various
|
25 | 25 | | services your application utilizes. Set this in your ".env" file.
|
26 | 26 | |
|
27 |
| - */ |
| 27 | + */ |
28 | 28 |
|
29 |
| - 'env' => env('APP_ENV', 'production'), |
| 29 | + 'env' => env('APP_ENV', 'production'), |
30 | 30 |
|
31 | 31 | /*
|
32 | 32 | |--------------------------------------------------------------------------
|
|
37 | 37 | | stack traces will be shown on every error that occurs within your
|
38 | 38 | | application. If disabled, a simple generic error page is shown.
|
39 | 39 | |
|
40 |
| - */ |
| 40 | + */ |
41 | 41 |
|
42 |
| - 'debug' => env('APP_DEBUG', false), |
| 42 | + 'debug' => env('APP_DEBUG', false), |
43 | 43 |
|
44 | 44 | /*
|
45 | 45 | |--------------------------------------------------------------------------
|
|
50 | 50 | | the Artisan command line tool. You should set this to the root of
|
51 | 51 | | your application so that it is used when running Artisan tasks.
|
52 | 52 | |
|
53 |
| - */ |
| 53 | + */ |
54 | 54 |
|
55 |
| - 'url' => env('APP_URL', 'http://localhost'), |
| 55 | + 'url' => env('APP_URL', 'http://localhost'), |
56 | 56 |
|
57 | 57 | /*
|
58 | 58 | |--------------------------------------------------------------------------
|
|
63 | 63 | | will be used by the PHP date and date-time functions. We have gone
|
64 | 64 | | ahead and set this to a sensible default for you out of the box.
|
65 | 65 | |
|
66 |
| - */ |
| 66 | + */ |
67 | 67 |
|
68 |
| - 'timezone' => 'UTC', |
| 68 | + 'timezone' => 'UTC', |
69 | 69 |
|
70 | 70 | /*
|
71 | 71 | |--------------------------------------------------------------------------
|
|
76 | 76 | | by the translation service provider. You are free to set this value
|
77 | 77 | | to any of the locales which will be supported by the application.
|
78 | 78 | |
|
79 |
| - */ |
| 79 | + */ |
80 | 80 |
|
81 |
| - 'locale' => 'en', |
| 81 | + 'locale' => 'zh-CN', |
82 | 82 |
|
83 | 83 | /*
|
84 | 84 | |--------------------------------------------------------------------------
|
|
89 | 89 | | is not available. You may change the value to correspond to any of
|
90 | 90 | | the language folders that are provided through your application.
|
91 | 91 | |
|
92 |
| - */ |
| 92 | + */ |
93 | 93 |
|
94 | 94 | 'fallback_locale' => 'en',
|
95 | 95 |
|
|
102 | 102 | | to a random, 32 character string, otherwise these encrypted strings
|
103 | 103 | | will not be safe. Please do this before deploying an application!
|
104 | 104 | |
|
105 |
| - */ |
| 105 | + */ |
106 | 106 |
|
107 |
| - 'key' => env('APP_KEY'), |
| 107 | + 'key' => env('APP_KEY'), |
108 | 108 |
|
109 |
| - 'cipher' => 'AES-256-CBC', |
| 109 | + 'cipher' => 'AES-256-CBC', |
110 | 110 |
|
111 | 111 | /*
|
112 | 112 | |--------------------------------------------------------------------------
|
|
119 | 119 | |
|
120 | 120 | | Available Settings: "single", "daily", "syslog", "errorlog"
|
121 | 121 | |
|
122 |
| - */ |
| 122 | + */ |
123 | 123 |
|
124 |
| - 'log' => env('APP_LOG', 'single'), |
| 124 | + 'log' => env('APP_LOG', 'single'), |
125 | 125 |
|
126 |
| - 'log_level' => env('APP_LOG_LEVEL', 'debug'), |
| 126 | + 'log_level' => env('APP_LOG_LEVEL', 'debug'), |
127 | 127 |
|
128 | 128 | /*
|
129 | 129 | |--------------------------------------------------------------------------
|
|
134 | 134 | | request to your application. Feel free to add your own services to
|
135 | 135 | | this array to grant expanded functionality to your applications.
|
136 | 136 | |
|
137 |
| - */ |
| 137 | + */ |
138 | 138 |
|
139 |
| - 'providers' => [ |
| 139 | + 'providers' => [ |
140 | 140 |
|
141 | 141 | /*
|
142 | 142 | * Laravel Framework Service Providers...
|
|
188 | 188 | | is started. However, feel free to register as many as you wish as
|
189 | 189 | | the aliases are "lazy" loaded so they don't hinder performance.
|
190 | 190 | |
|
191 |
| - */ |
192 |
| - |
193 |
| - 'aliases' => [ |
194 |
| - |
195 |
| - 'App' => Illuminate\Support\Facades\App::class, |
196 |
| - 'Artisan' => Illuminate\Support\Facades\Artisan::class, |
197 |
| - 'Auth' => Illuminate\Support\Facades\Auth::class, |
198 |
| - 'Blade' => Illuminate\Support\Facades\Blade::class, |
199 |
| - 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, |
200 |
| - 'Bus' => Illuminate\Support\Facades\Bus::class, |
201 |
| - 'Cache' => Illuminate\Support\Facades\Cache::class, |
202 |
| - 'Config' => Illuminate\Support\Facades\Config::class, |
203 |
| - 'Cookie' => Illuminate\Support\Facades\Cookie::class, |
204 |
| - 'Crypt' => Illuminate\Support\Facades\Crypt::class, |
205 |
| - 'DB' => Illuminate\Support\Facades\DB::class, |
206 |
| - 'Eloquent' => Illuminate\Database\Eloquent\Model::class, |
207 |
| - 'Event' => Illuminate\Support\Facades\Event::class, |
208 |
| - 'File' => Illuminate\Support\Facades\File::class, |
209 |
| - 'Gate' => Illuminate\Support\Facades\Gate::class, |
210 |
| - 'Hash' => Illuminate\Support\Facades\Hash::class, |
211 |
| - 'Lang' => Illuminate\Support\Facades\Lang::class, |
212 |
| - 'Log' => Illuminate\Support\Facades\Log::class, |
213 |
| - 'Mail' => Illuminate\Support\Facades\Mail::class, |
| 191 | + */ |
| 192 | + |
| 193 | + 'aliases' => [ |
| 194 | + |
| 195 | + 'App' => Illuminate\Support\Facades\App::class, |
| 196 | + 'Artisan' => Illuminate\Support\Facades\Artisan::class, |
| 197 | + 'Auth' => Illuminate\Support\Facades\Auth::class, |
| 198 | + 'Blade' => Illuminate\Support\Facades\Blade::class, |
| 199 | + 'Broadcast' => Illuminate\Support\Facades\Broadcast::class, |
| 200 | + 'Bus' => Illuminate\Support\Facades\Bus::class, |
| 201 | + 'Cache' => Illuminate\Support\Facades\Cache::class, |
| 202 | + 'Config' => Illuminate\Support\Facades\Config::class, |
| 203 | + 'Cookie' => Illuminate\Support\Facades\Cookie::class, |
| 204 | + 'Crypt' => Illuminate\Support\Facades\Crypt::class, |
| 205 | + 'DB' => Illuminate\Support\Facades\DB::class, |
| 206 | + 'Eloquent' => Illuminate\Database\Eloquent\Model::class, |
| 207 | + 'Event' => Illuminate\Support\Facades\Event::class, |
| 208 | + 'File' => Illuminate\Support\Facades\File::class, |
| 209 | + 'Gate' => Illuminate\Support\Facades\Gate::class, |
| 210 | + 'Hash' => Illuminate\Support\Facades\Hash::class, |
| 211 | + 'Lang' => Illuminate\Support\Facades\Lang::class, |
| 212 | + 'Log' => Illuminate\Support\Facades\Log::class, |
| 213 | + 'Mail' => Illuminate\Support\Facades\Mail::class, |
214 | 214 | 'Notification' => Illuminate\Support\Facades\Notification::class,
|
215 |
| - 'Password' => Illuminate\Support\Facades\Password::class, |
216 |
| - 'Queue' => Illuminate\Support\Facades\Queue::class, |
217 |
| - 'Redirect' => Illuminate\Support\Facades\Redirect::class, |
218 |
| - 'Redis' => Illuminate\Support\Facades\Redis::class, |
219 |
| - 'Request' => Illuminate\Support\Facades\Request::class, |
220 |
| - 'Response' => Illuminate\Support\Facades\Response::class, |
221 |
| - 'Route' => Illuminate\Support\Facades\Route::class, |
222 |
| - 'Schema' => Illuminate\Support\Facades\Schema::class, |
223 |
| - 'Session' => Illuminate\Support\Facades\Session::class, |
224 |
| - 'Storage' => Illuminate\Support\Facades\Storage::class, |
225 |
| - 'URL' => Illuminate\Support\Facades\URL::class, |
226 |
| - 'Validator' => Illuminate\Support\Facades\Validator::class, |
227 |
| - 'View' => Illuminate\Support\Facades\View::class, |
| 215 | + 'Password' => Illuminate\Support\Facades\Password::class, |
| 216 | + 'Queue' => Illuminate\Support\Facades\Queue::class, |
| 217 | + 'Redirect' => Illuminate\Support\Facades\Redirect::class, |
| 218 | + 'Redis' => Illuminate\Support\Facades\Redis::class, |
| 219 | + 'Request' => Illuminate\Support\Facades\Request::class, |
| 220 | + 'Response' => Illuminate\Support\Facades\Response::class, |
| 221 | + 'Route' => Illuminate\Support\Facades\Route::class, |
| 222 | + 'Schema' => Illuminate\Support\Facades\Schema::class, |
| 223 | + 'Session' => Illuminate\Support\Facades\Session::class, |
| 224 | + 'Storage' => Illuminate\Support\Facades\Storage::class, |
| 225 | + 'URL' => Illuminate\Support\Facades\URL::class, |
| 226 | + 'Validator' => Illuminate\Support\Facades\Validator::class, |
| 227 | + 'View' => Illuminate\Support\Facades\View::class, |
228 | 228 |
|
229 | 229 | ],
|
230 | 230 |
|
|
0 commit comments