groundsix / password-laravel
Bindings for groundsix/password for laravel
Installs: 2 474
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 6
Forks: 0
Open Issues: 0
Requires
- groundsix/password: ^0.1
- illuminate/support: ^5.4
This package is auto-updated.
Last update: 2024-10-22 11:37:52 UTC
README
Bindings for groundsix/password for laravel
Available Validation Rules
- password_blacklist
- password_domain
- password_minimum_length
- password_mixed_case
- password_minimum_numeric
- password_minimum_special
password_blacklist
The field under validation must be not be included in the provided blacklist.
The path to the blacklist file can be set with the password-laravel.blacklist_file
config option. If it is not set it defaults to this list.
password_domain
The field under validation must contain the domain specified in password-laravel.domain
.
password_minimum_length
The field under validation must not be shorter than the length specified in password-laravel.minimum_length
config option.
If it is not set it defaults to 8
characters.
password_mixed_case
The field under validation must be a mix of upper and lower case characters.
password_minimum_numeric
The field under validation must contain at least the number of numeric characters specified in password-laravel.minimum_numeric
.
If it is not set it defaults to 1
character.
password_minimum_special
The field under validation must contain at least the number of special characters specified in password-laravel.special.minimum
.
If it is not set it defaults to 1
character.
A default list of special characters is given in password-laravel.special.whitelist
.