dev-master
9999999-devCommand to convert a string to a Laravel hashed password to use directly on the database.
MIT
The Requires
- php >=5.4.0
- illuminate/support ~5.0
by Ariel Orozco
laravel hash
Command to convert a string to a Laravel hashed password to use directly on the database.
Command to convert a string to a Laravel hashed password to use directly on the database., (*1)
{ "require": { "arielcr/laravel5-hasher": "dev-master" } }
Then run composer update
, (*2)
Add the service provider to config/app.php
:, (*3)
'providers' => [ // ... 'Laravel\Hasher\HasherServiceProvider', ],
You're all set. Run php artisan
from the console, and you'll see the new command., (*4)
php artisan hash password=123456
Command to convert a string to a Laravel hashed password to use directly on the database.
MIT
laravel hash