2017 © Pedro Peláez
 

library laravel5-hasher

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

image

arielcr/laravel5-hasher

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

  • Wednesday, July 8, 2015
  • by arielcr
  • Repository
  • 1 Watchers
  • 0 Stars
  • 6 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel 5 Password Hasher

Command to convert a string to a Laravel hashed password to use directly on the database., (*1)

Usage

Step 1: Install Through Composer

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

Then run composer update, (*2)

Step 2: Add the Service Provider

Add the service provider to config/app.php:, (*3)

'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., (*4)

Example

php artisan hash password=123456

The Versions

08/07 2015

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

 

laravel hash