GroundSix / password-laravel by groundsix

Bindings for groundsix/password for laravel
2,471
0
6
Package Data
Maintainer Username: groundsix
Maintainer Contact: anthony.porthouse@groundsix.com (Anthony Porthouse)
Package Create Date: 2017-04-25
Package Last Update: 2017-10-16
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-03-28 03:09:10
Package Statistics
Total Downloads: 2,471
Monthly Downloads: 1
Daily Downloads: 0
Total Stars: 0
Total Watchers: 6
Total Forks: 0
Total Open Issues: 0

password-laravel

Latest Version on Packagist

Bindings for groundsix/password for laravel

Available Validation Rules

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.