https://github.com/laravel-validation-rules/exposed-password
  
  
    Validate that a password hasn't been exposed in a data breach. 
    https://github.com/laravel-validation-rules/exposed-password
  
data-breach laravel laravel-5-package laravel-validation passwords php security
        Last synced: 11 days ago 
        JSON representation
    
Validate that a password hasn't been exposed in a data breach.
- Host: GitHub
 - URL: https://github.com/laravel-validation-rules/exposed-password
 - Owner: laravel-validation-rules
 - License: lgpl-3.0
 - Created: 2018-05-08T19:07:54.000Z (over 7 years ago)
 - Default Branch: master
 - Last Pushed: 2020-03-06T09:33:10.000Z (over 5 years ago)
 - Last Synced: 2024-11-20T07:36:17.166Z (12 months ago)
 - Topics: data-breach, laravel, laravel-5-package, laravel-validation, passwords, php, security
 - Homepage:
 - Size: 8.79 KB
 - Stars: 13
 - Watchers: 2
 - Forks: 2
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 - License: LICENSE
 
 
Awesome Lists containing this project
README
          # Laravel Validator Rules - Exposed Password
This rule will validate that a password hasn't been exposed in a data breach.
## Installation
```bash
composer require laravel-validation-rules/exposed-password
```
## Usage
```php
use DivineOmega\LaravelPasswordExposedValidationRule\PasswordExposed;
$request->validate([
    'password' => ['required', new PasswordExposed],
]);
```
## License
This project is licensed under a GNU Lesser General Public License v3.0 which you can find
[in this LICENSE](https://github.com/laravel-validation-rules/exposed-password/blob/master/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](https://laravel-validation-rules.github.io/) website.