mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-17 04:32:09 -05:00
30 lines
713 B
PHP
30 lines
713 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Minimum Length
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Specify the required minimum length for passwords.
|
|
|
|
|
*/
|
|
'minimum_length' => env('PASSWORD_LENGTH', 8),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Password Requirements
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Specify the security requirements for passwords.
|
|
|
|
|
*/
|
|
'requirements' => [
|
|
'[0-9]',
|
|
'[a-z]',
|
|
'[A-Z]',
|
|
'[!@#$%^&*()]',
|
|
],
|
|
];
|