Command to convert a string to a Laravel hashed password to use directly on the database.
arielcr/laravel5-hasher is a Laravel package for command to convert a string to a laravel hashed password to use directly on the database..
It currently has 0 GitHub stars and 14 downloads on Packagist.
Install it with composer require arielcr/laravel5-hasher.
Discover more Laravel packages by arielcr
or browse all Laravel packages to compare alternatives.
Last updated
Command to convert a string to a Laravel hashed password to use directly on the database.
{
"require": {
"arielcr/laravel5-hasher": "dev-master"
}
}
Then run composer update
Add the service provider to config/app.php:
'providers' => [
// ...
'Laravel\Hasher\HasherServiceProvider',
],
You're all set. Run php artisan from the console, and you'll see the new command.
php artisan hash password=123456