mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-19 03:42:05 -05:00
34 lines
919 B
PHP
34 lines
919 B
PHP
<?php
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
*/
|
|
|
|
namespace App\Actions\Fortify;
|
|
|
|
use Illuminate\Validation\Rules\Password as Password;
|
|
|
|
trait PasswordValidationRules
|
|
{
|
|
/**
|
|
* Get the validation rules used to validate passwords.
|
|
*
|
|
* @return array<int, \Illuminate\Contracts\Validation\Rule|array|string>
|
|
*/
|
|
protected function passwordRules(): array
|
|
{
|
|
return [
|
|
'required',
|
|
'string',
|
|
Password::min(12)->mixedCase()->letters()->numbers()->uncompromised(),
|
|
];
|
|
}
|
|
}
|