parfaitementweb/password-validation

Additional validation rules to empower strong password usage in Laravel applications.

1.2 2023-06-27 18:05 UTC

This package is auto-updated.

Last update: 2024-04-27 19:45:24 UTC


README

Latest Version on Packagist MIT Licensed GitHub Workflow Status

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.