Skip to content

Commit 0dd31ba

Browse files
committed
Merge branch 'master' into develop
2 parents 7c9e5ea + f73795a commit 0dd31ba

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

app/Http/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ class Kernel extends HttpKernel
1414
* @var array
1515
*/
1616
protected $middleware = [
17+
\App\Http\Middleware\TrustProxies::class,
1718
\App\Http\Middleware\CheckForMaintenanceMode::class,
1819
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
1920
\App\Http\Middleware\TrimStrings::class,
2021
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
21-
\App\Http\Middleware\TrustProxies::class,
2222
];
2323

2424
/**

config/broadcasting.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
'app_id' => env('PUSHER_APP_ID'),
3838
'options' => [
3939
'cluster' => env('PUSHER_APP_CLUSTER'),
40-
'encrypted' => true,
40+
'useTLS' => true,
4141
],
4242
],
4343

config/database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123

124124
'options' => [
125125
'cluster' => env('REDIS_CLUSTER', 'predis'),
126-
'prefix' => Str::slug(env('APP_NAME', 'laravel'), '_').'_database_',
126+
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
127127
],
128128

129129
'default' => [

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"axios": "^0.19",
1414
"cross-env": "^5.1",
1515
"laravel-mix": "^4.0.7",
16-
"lodash": "^4.17.5",
16+
"lodash": "^4.17.13",
1717
"resolve-url-loader": "^2.3.1",
1818
"sass": "^1.15.2",
1919
"sass-loader": "^7.1.0"

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Laravel is accessible, powerful, and provides tools required for large, robust a
2525

2626
Laravel has the most extensive and thorough [documentation](https://laravel.com/docs) and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework.
2727

28-
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1400 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
28+
If you don't feel like reading, [Laracasts](https://laracasts.com) can help. Laracasts contains over 1500 video tutorials on a range of topics including Laravel, modern PHP, unit testing, and JavaScript. Boost your skills by digging into our comprehensive video library.
2929

3030
## Laravel Sponsors
3131

0 commit comments

Comments
 (0)