Files
UNIT3D-Community-Edition/app/Actions/Fortify/PasswordValidationRules.php
2024-03-19 17:56:44 -04:00

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(),
];
}
}