Skip to content

Commit d93bb50

Browse files
committed
Update to Laravel commit: 131a10260e73e83e6b1cd63788b8f6584dd3e98a
1 parent 9857d14 commit d93bb50

File tree

7 files changed

+12
-4
lines changed

7 files changed

+12
-4
lines changed

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ LOG_LEVEL=debug
1515
DB_CONNECTION=mysql
1616
BROADCAST_DRIVER=log
1717
CACHE_DRIVER=file
18+
FILESYSTEM_DRIVER=local
1819
QUEUE_CONNECTION=sync
1920
SESSION_DRIVER=file
2021
SESSION_LIFETIME=120
@@ -49,6 +50,7 @@ AWS_ACCESS_KEY_ID=
4950
AWS_SECRET_ACCESS_KEY=
5051
AWS_DEFAULT_REGION=us-east-1
5152
AWS_BUCKET=
53+
AWS_USE_PATH_STYLE_ENDPOINT=false
5254

5355
# Pusher
5456
PUSHER_APP_ID=

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
1313

1414
- Updated composer and yarn dependencies
1515
- [Updated TR translations](https://github.com/rappasoft/laravel-boilerplate/pull/1527)
16+
- Updated to Laravel commit: 131a10260e73e83e6b1cd63788b8f6584dd3e98a
1617

1718
## [8.2.0] - 2021-04-22
1819

artisan

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ define('LARAVEL_START', microtime(true));
1111
| Composer provides a convenient, automatically generated class loader
1212
| for our application. We just need to utilize it! We'll require it
1313
| into the script here so that we do not have to worry about the
14-
| loading of any our classes "manually". Feels great to relax.
14+
| loading of any of our classes manually. It's great to relax.
1515
|
1616
*/
1717

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"jamesmills/laravel-timezone": "^1.9",
1919
"lab404/laravel-impersonate": "^1.6",
2020
"langleyfoxall/laravel-nist-password-rules": "^4.1",
21-
"laravel/framework": "^8.24",
21+
"laravel/framework": "^8.40",
2222
"laravel/socialite": "^5.0",
2323
"laravel/tinker": "^2.5",
2424
"laravel/ui": "^3.0",

config/cache.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
| same cache driver to group types of items stored in your caches.
2828
|
2929
| Supported drivers: "apc", "array", "database", "file",
30-
| "memcached", "redis", "dynamodb", "null"
30+
| "memcached", "redis", "dynamodb", "octane", "null"
3131
|
3232
*/
3333

@@ -88,6 +88,10 @@
8888
'endpoint' => env('DYNAMODB_ENDPOINT'),
8989
],
9090

91+
'octane' => [
92+
'driver' => 'octane',
93+
],
94+
9195
],
9296

9397
/*

config/filesystems.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
'bucket' => env('AWS_BUCKET'),
5151
'url' => env('AWS_URL'),
5252
'endpoint' => env('AWS_ENDPOINT'),
53+
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
5354
],
5455

5556
],

config/session.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
|
165165
| By setting this option to true, session cookies will only be sent back
166166
| to the server if the browser has a HTTPS connection. This will keep
167-
| the cookie from being sent to you if it can not be done securely.
167+
| the cookie from being sent to you when it can't be done securely.
168168
|
169169
*/
170170

0 commit comments

Comments
 (0)