Package Data | |
---|---|
Maintainer Username: | retdaisuke |
Maintainer Contact: | retdaisuke@users.noreply.github.com (KATO Daisuke) |
Package Create Date: | 2017-05-05 |
Package Last Update: | 2017-11-16 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2025-02-09 15:10:51 |
Package Statistics | |
---|---|
Total Downloads: | 2,990 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 0 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Laravel hashing for migration from FuelPHP hashed password.
Add the package to your composer.json and run composer update.
"require": {
"retdaisuke/laravel-fuelphp-hashing": "^1.0"
},
Or install with composer.
$ composer require retdaisuke/laravel-fuelphp-hashing
Change the service provider in config/app.php:
//Illuminate\Hashing\HashServiceProvider::class,
Retdaisuke\LaravelFuelphpHashing\HashServiceProvider::class,
Create fuelphp config files. config/fuelphp.php
<?php
return [
'auth' => [
'salt' => env('FUELPHP_AUTH_SALT', ''),
'iterations' => env('FUELPHP_AUTH_ITERATIONS', 10000),
],
];
.env file.
FUELPHP_AUTH_SALT=xxxxxxxxxxxxxxxxx