Download the PHP package cndrsdrmn/passwords without Composer
On this page you can find all versions of the php package cndrsdrmn/passwords. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cndrsdrmn/passwords
More information about cndrsdrmn/passwords
Files in cndrsdrmn/passwords
Package passwords
Short Description Override and extend Laravel's password reset to support OTP-style 6-digit tokens with verification state.
License MIT
Homepage https://github.com/cndrsdrmn/passwords
Informations about the package passwords
Laravel Auth Passwords - OTP Password Reset
A streamlined OTP password reset for your Laravel application. This package seamlessly integrates with the Password facade, so you can add a 6-digit OTP and a crucial verification step, managed by a new markVerified method, without changing your existing code. It just works.
Installation
You can install the package via Composer:
The service provider is auto-discovered. If you have disabled auto-discovery, you'll need to manually register it in your bootstrap/providers.php:
After installation, run the migrations to create the necessary table:
You can optionally publish the migrations and translations if you need to customize them:
Configuration
This package uses the standard Laravel password configuration. You can find more details about configuring the password broker in the official Laravel documentation.
Quickstart
This package extends Laravel's default password broker by introducing a markVerified method. This adds an essential validation step before a password can be reset.
Before the user can reset their password, you must verify the OTP they provide. The package adds a new markVerified method to the broker, which you can call directly from the facade.
For the rest of the password reset flow, you can follow the instructions in the official Laravel documentation.
License
This package is open-sourced software licensed under The MIT License (MIT). See the LICENSE file for more details.
Credits
- Built by: Candra Sudirman
- Inspired by: This package is inspired by the secure and flexible design of Laravel's core authentication and password reset systems.
- Package Template: Skeleton PHP