retdaisuke/laravel-fuelphp-hashing
Composer 安装命令:
composer require retdaisuke/laravel-fuelphp-hashing
包简介
Laravel hashing for migration from FuelPHP hashed password.
README 文档
README
Laravel hashing for migration from FuelPHP hashed password.
Install (Laravel5.1~)
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
统计信息
- 总下载量: 2.99k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-05-05