laravel-validation-rules / exposed-password
Metapackage for https://github.com/DivineOmega/laravel-password-exposed-validation-rule
Package info
github.com/laravel-validation-rules/exposed-password
Type:metapackage
pkg:composer/laravel-validation-rules/exposed-password
Requires
This package is auto-updated.
Last update: 2026-07-18 09:08:53 UTC
README
This metapackage installs the maintained Laravel rule that validates that a password has not been exposed in a data breach.
Installation
composer require laravel-validation-rules/exposed-password
Usage
use JordJD\LaravelPasswordExposedValidationRule\PasswordNotExposed; $request->validate([ 'password' => ['required', new PasswordNotExposed()], ]);
Version 2 of this metapackage uses the current jord-jd/laravel-password-exposed-validation-rule package and namespace. Applications that still use the legacy DivineOmega namespace should remain on version 1 until they are ready to update the import.
License
This project is licensed under a GNU Lesser General Public License v3.0 which you can find in this LICENSE.
Feedback
If you have any feedback, comments or suggestions, please feel free to open an issue within this repository.
Laravel Validation Rules
This package is part of the Laravel Validation Rules collection. If you're after more useful validation rules, head to the Laravel Validation Rules website.