this repo has no description
1<?php
2
3return [
4 /*
5 |--------------------------------------------------------------------------
6 | Application Name
7 |--------------------------------------------------------------------------
8 |
9 | This value is the name of your application, which will be used when the
10 | framework needs to place the application's name in a notification or
11 | other UI elements where an application name needs to be displayed.
12 |
13 */
14
15 "name" => env("APP_NAME", "Laravel"),
16
17 /*
18 |--------------------------------------------------------------------------
19 | Application Environment
20 |--------------------------------------------------------------------------
21 |
22 | This value determines the "environment" your application is currently
23 | running in. This may determine how you prefer to configure various
24 | services the application utilizes. Set this in your ".env" file.
25 |
26 */
27
28 "env" => env("APP_ENV", "production"),
29
30 /*
31 |--------------------------------------------------------------------------
32 | Application Debug Mode
33 |--------------------------------------------------------------------------
34 |
35 | When your application is in debug mode, detailed error messages with
36 | stack traces will be shown on every error that occurs within your
37 | application. If disabled, a simple generic error page is shown.
38 |
39 */
40
41 "debug" => (bool) env("APP_DEBUG", false),
42
43 /*
44 |--------------------------------------------------------------------------
45 | Application URL
46 |--------------------------------------------------------------------------
47 |
48 | This URL is used by the console to properly generate URLs when using
49 | the Artisan command line tool. You should set this to the root of
50 | the application so that it's available within Artisan commands.
51 |
52 */
53
54 "url" => env("APP_URL", "http://localhost"),
55
56 /*
57 |--------------------------------------------------------------------------
58 | Application Timezone
59 |--------------------------------------------------------------------------
60 |
61 | Here you may specify the default timezone for your application, which
62 | will be used by the PHP date and date-time functions. The timezone
63 | is set to "UTC" by default as it is suitable for most use cases.
64 |
65 */
66
67 "timezone" => "UTC",
68
69 /*
70 |--------------------------------------------------------------------------
71 | Application Locale Configuration
72 |--------------------------------------------------------------------------
73 |
74 | The application locale determines the default locale that will be used
75 | by Laravel's translation / localization methods. This option can be
76 | set to any locale for which you plan to have translation strings.
77 |
78 */
79
80 "locale" => env("APP_LOCALE", "en"),
81
82 "fallback_locale" => env("APP_FALLBACK_LOCALE", "en"),
83
84 "faker_locale" => env("APP_FAKER_LOCALE", "en_US"),
85
86 /*
87 |--------------------------------------------------------------------------
88 | Encryption Key
89 |--------------------------------------------------------------------------
90 |
91 | This key is utilized by Laravel's encryption services and should be set
92 | to a random, 32 character string to ensure that all encrypted values
93 | are secure. You should do this prior to deploying the application.
94 |
95 */
96
97 "cipher" => "AES-256-CBC",
98
99 "key" => env("APP_KEY"),
100
101 "previous_keys" => [
102 ...array_filter(explode(",", (string) env("APP_PREVIOUS_KEYS", ""))),
103 ],
104
105 /*
106 |--------------------------------------------------------------------------
107 | Maintenance Mode Driver
108 |--------------------------------------------------------------------------
109 |
110 | These configuration options determine the driver used to determine and
111 | manage Laravel's "maintenance mode" status. The "cache" driver will
112 | allow maintenance mode to be controlled across multiple machines.
113 |
114 | Supported drivers: "file", "cache"
115 |
116 */
117
118 "maintenance" => [
119 "driver" => env("APP_MAINTENANCE_DRIVER", "file"),
120 "store" => env("APP_MAINTENANCE_STORE", "database"),
121 ],
122];