parfaitementweb / password-validation
This package is abandoned and no longer maintained.
No replacement package was suggested.
Additional validation rules to empower strong password usage in Laravel applications.
1.2
2023-06-27 18:05 UTC
Requires
- php: ^7.2|^8.0|^8.1
- illuminate/support: ^5.5|^6.0|^7.0|^8.0|^9.0|^10.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
- orchestra/testbench: ^4.5|^5.0|^6.0
- phpunit/phpunit: ^8.0|^9.3
This package is auto-updated.
Last update: 2024-05-27 19:57:19 UTC
README
This package provides additional validation rules to empower strong password usage in Laravel applications.
Installation
You can install the package via composer:
composer require parfaitementweb/password-validation
The package will automatically register itself.
Translations
If you wish to edit the package translations, you can run the following command to publish them into your resources/lang
folder
php artisan vendor:publish --provider="Parfaitementweb\PasswordValidation\PasswordValidationServiceProvider"
Rules
minoneletter
- The field must include at least one letter.upperandlower
- The field must include both upper and lower case letters.minonenumber
- The field must include at least one number.minonesymbol
- The field must include at least one symbol.