Skip to content

Commit dbc38dc

Browse files
committed
play time
1 parent 2940798 commit dbc38dc

File tree

6 files changed

+449
-1
lines changed

6 files changed

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

0 commit comments

Comments
 (0)