2017 © Pedro Peláez
 

library laravel-fuelphp-hashing

Laravel hashing for migration from FuelPHP hashed password.

image

retdaisuke/laravel-fuelphp-hashing

Laravel hashing for migration from FuelPHP hashed password.

  • Thursday, November 16, 2017
  • by retdaisuke
  • Repository
  • 0 Watchers
  • 0 Stars
  • 353 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 23 % Grown

The README.md

laravel-fuelphp-hashing

Laravel hashing for migration from FuelPHP hashed password., (*1)

Install (Laravel5.1~)

Add the package to your composer.json and run composer update., (*2)

"require": {
    "retdaisuke/laravel-fuelphp-hashing": "^1.0"
},

Or install with composer., (*3)

$ composer require retdaisuke/laravel-fuelphp-hashing

Change the service provider in config/app.php:, (*4)

//Illuminate\Hashing\HashServiceProvider::class,
Retdaisuke\LaravelFuelphpHashing\HashServiceProvider::class,

Create fuelphp config files. config/fuelphp.php, (*5)

<?php
return [
    'auth' => [
        'salt' => env('FUELPHP_AUTH_SALT', ''),
        'iterations' => env('FUELPHP_AUTH_ITERATIONS', 10000),
    ],
];

.env file., (*6)

FUELPHP_AUTH_SALT=xxxxxxxxxxxxxxxxx

The Versions

16/11 2017

dev-master

9999999-dev

Laravel hashing for migration from FuelPHP hashed password.

  Sources   Download

MIT

The Requires

 

by KATO Daisuke

16/11 2017

1.0.0

1.0.0.0

Laravel hashing for migration from FuelPHP hashed password.

  Sources   Download

MIT

The Requires

 

by KATO Daisuke

05/05 2017

0.0.1

0.0.1.0

Laravel hashing for migration from FuelPHP hashed password.

  Sources   Download

MIT

The Requires

 

by KATO Daisuke