tmd / laravel-password-updater
Handles password verification and re-hashing passwords that may be hashed by outdated methods.
0.0.2
2016-10-09 16:01 UTC
This package is auto-updated.
Last update: 2024-10-28 10:54:08 UTC
README
Handles password verification and re-hashing passwords that may be hashed by outdated methods.
Setup
composer require tmd/laravel-password-updater
Usage
(Overly simplified example.)
<?php use Tmd\LaravelPasswordUpdater\PasswordHasher; public function login(PasswordHasher $passwordHasher) { /** @var User $user */ $user = User::where('username', $credentials['username'])->first(); if (!$user) { return ['username' => ['There is no account with that username.']]; } if (!$passwordHasher->verify($credentials['password'], $user, 'password')) { return ['password' => ['That password is not correct.']]; } // Password is correct. }