LaravelPackages.net
Acme Inc.
Toggle sidebar
arielcr/laravel5-hasher

Command to convert a string to a Laravel hashed password to use directly on the database.

14
0
About arielcr/laravel5-hasher

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

Laravel 5 Password Hasher

Command to convert a string to a Laravel hashed password to use directly on the database.

Usage

Step 1: Install Through Composer

{
    "require": {
        "arielcr/laravel5-hasher": "dev-master"
    }
}

Then run composer update

Step 2: Add the Service Provider

Add the service provider to config/app.php:

'providers' => [
    // ...
    'Laravel\Hasher\HasherServiceProvider',
],

Step 3: Run Artisan!

You're all set. Run php artisan from the console, and you'll see the new command.

Example

php artisan hash password=123456
Comments