Skip to content

Commit 0e13783

Browse files
authored
Release v1.8.0 (#2418)
Co-authored-by: Alex Justesen <[email protected]>
1 parent a1d0401 commit 0e13783

File tree

2 files changed

+149
-3
lines changed

2 files changed

+149
-3
lines changed

config/app.php

Lines changed: 147 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,165 @@
22

33
return [
44

5+
/*
6+
|--------------------------------------------------------------------------
7+
| Application Name
8+
|--------------------------------------------------------------------------
9+
|
10+
| This value is the name of your application, which will be used when the
11+
| framework needs to place the application's name in a notification or
12+
| other UI elements where an application name needs to be displayed.
13+
|
14+
*/
15+
516
'name' => env('APP_NAME', 'Speedtest Tracker'),
617

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+
729
'env' => env('APP_ENV', 'production'),
830

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' => (bool) 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+
| the application so that it's available within Artisan commands.
52+
|
53+
*/
54+
55+
'url' => env('APP_URL', 'http://localhost'),
56+
57+
'force_https' => env('FORCE_HTTPS', false),
58+
59+
/*
60+
|--------------------------------------------------------------------------
61+
| Application Timezone
62+
|--------------------------------------------------------------------------
63+
|
64+
| Here you may specify the default timezone for your application, which
65+
| will be used by the PHP date and date-time functions. The timezone
66+
| is set to "UTC" by default as it is suitable for most use cases.
67+
|
68+
*/
69+
70+
'timezone' => env('APP_TIMEZONE', 'UTC'),
71+
72+
/*
73+
|--------------------------------------------------------------------------
74+
| Application Locale Configuration
75+
|--------------------------------------------------------------------------
76+
|
77+
| The application locale determines the default locale that will be used
78+
| by Laravel's translation / localization methods. This option can be
79+
| set to any locale for which you plan to have translation strings.
80+
|
81+
*/
82+
83+
'locale' => env('APP_LOCALE', 'en'),
84+
85+
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
86+
87+
'faker_locale' => env('APP_FAKER_LOCALE', 'en_US'),
88+
89+
/*
90+
|--------------------------------------------------------------------------
91+
| Encryption Key
92+
|--------------------------------------------------------------------------
93+
|
94+
| This key is utilized by Laravel's encryption services and should be set
95+
| to a random, 32 character string to ensure that all encrypted values
96+
| are secure. You should do this prior to deploying the application.
97+
|
98+
*/
99+
100+
'cipher' => 'AES-256-CBC',
101+
102+
'key' => env('APP_KEY'),
103+
104+
'previous_keys' => [
105+
...array_filter(
106+
explode(',', env('APP_PREVIOUS_KEYS', ''))
107+
),
108+
],
109+
110+
/*
111+
|--------------------------------------------------------------------------
112+
| Maintenance Mode Driver
113+
|--------------------------------------------------------------------------
114+
|
115+
| These configuration options determine the driver used to determine and
116+
| manage Laravel's "maintenance mode" status. The "cache" driver will
117+
| allow maintenance mode to be controlled across multiple machines.
118+
|
119+
| Supported drivers: "file", "cache"
120+
|
121+
*/
122+
123+
'maintenance' => [
124+
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
125+
'store' => env('APP_MAINTENANCE_STORE', 'database'),
126+
],
127+
128+
// TODO: move to speedtest.php configuration file
129+
130+
/*
131+
|--------------------------------------------------------------------------
132+
| Chart Configuration
133+
|--------------------------------------------------------------------------
134+
|
135+
| Here you may specify the default settings for charts used in the application.
136+
|
137+
*/
138+
9139
'chart_begin_at_zero' => env('CHART_BEGIN_AT_ZERO', true),
10140

11141
'chart_datetime_format' => env('CHART_DATETIME_FORMAT', 'M. j - G:i'),
12142

143+
/*
144+
|--------------------------------------------------------------------------
145+
| Display Configuration
146+
|--------------------------------------------------------------------------
147+
|
148+
| Here you may specify the default settings for displaying data in the application.
149+
|
150+
*/
151+
13152
'datetime_format' => env('DATETIME_FORMAT', 'M. jS, Y g:ia'),
14153

15154
'display_timezone' => env('DISPLAY_TIMEZONE', 'UTC'),
16155

17-
'force_https' => env('FORCE_HTTPS', false),
156+
/*
157+
|--------------------------------------------------------------------------
158+
| Admin Configuration
159+
|--------------------------------------------------------------------------
160+
|
161+
| Here you may specify the default account settings for the admin user at installation.
162+
|
163+
*/
18164

19165
'admin_name' => env('ADMIN_NAME', 'Admin'),
20166

config/speedtest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
/**
77
* General settings.
88
*/
9-
'build_date' => Carbon::parse('2025-11-13'),
9+
'build_date' => Carbon::parse('2025-11-17'),
1010

11-
'build_version' => 'v1.7.4',
11+
'build_version' => 'v1.8.0',
1212

1313
'content_width' => env('CONTENT_WIDTH', '7xl'),
1414

0 commit comments

Comments
 (0)