Skip to content

Commit 71efaae

Browse files
committed
Merge branch '8.x'
2 parents b86a62a + 4c5b774 commit 71efaae

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,8 @@ We would like to extend our thanks to the following sponsors for funding Laravel
4444
- **[DevSquad](https://devsquad.com)**
4545
- **[Curotec](https://www.curotec.com/services/technologies/laravel/)**
4646
- **[OP.GG](https://op.gg)**
47-
- **[CMS Max](https://www.cmsmax.com/)**
4847
- **[WebReinvent](https://webreinvent.com/?utm_source=laravel&utm_medium=github&utm_campaign=patreon-sponsors)**
4948
- **[Lendio](https://lendio.com)**
50-
- **[Romega Software](https://romegasoftware.com)**
5149

5250
## Contributing
5351

config/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
| than one user table or model in the application and you want to have
8181
| separate password reset settings based on the specific user types.
8282
|
83-
| The expire time is the number of minutes that the reset token should be
83+
| The expire time is the number of minutes that each reset token will be
8484
| considered valid. This security feature keeps tokens short-lived so
8585
| they have less time to be guessed. You may change this as needed.
8686
|

config/hashing.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
*/
4545

4646
'argon' => [
47-
'memory' => 1024,
48-
'threads' => 2,
49-
'time' => 2,
47+
'memory' => 65536,
48+
'threads' => 1,
49+
'time' => 4,
5050
],
5151

5252
];

lang/en/validation.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@
6868
'ip' => 'The :attribute must be a valid IP address.',
6969
'ipv4' => 'The :attribute must be a valid IPv4 address.',
7070
'ipv6' => 'The :attribute must be a valid IPv6 address.',
71-
'mac_address' => 'The :attribute must be a valid MAC address.',
7271
'json' => 'The :attribute must be a valid JSON string.',
7372
'lt' => [
7473
'numeric' => 'The :attribute must be less than :value.',
@@ -82,6 +81,7 @@
8281
'string' => 'The :attribute must be less than or equal to :value characters.',
8382
'array' => 'The :attribute must not have more than :value items.',
8483
],
84+
'mac_address' => 'The :attribute must be a valid MAC address.',
8585
'max' => [
8686
'numeric' => 'The :attribute must not be greater than :max.',
8787
'file' => 'The :attribute must not be greater than :max kilobytes.',
@@ -108,6 +108,7 @@
108108
'prohibits' => 'The :attribute field prohibits :other from being present.',
109109
'regex' => 'The :attribute format is invalid.',
110110
'required' => 'The :attribute field is required.',
111+
'required_array_keys' => 'The :attribute field must contain entries for: :values.',
111112
'required_if' => 'The :attribute field is required when :other is :value.',
112113
'required_unless' => 'The :attribute field is required unless :other is in :values.',
113114
'required_with' => 'The :attribute field is required when :values is present.',

0 commit comments

Comments
 (0)