ksungcaya/phpass 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ksungcaya/phpass

最新稳定版本:1.1

Composer 安装命令:

composer require ksungcaya/phpass

包简介

PHPass integration to Laravel

README 文档

README

#PHPass Laravel

A PHPass integration to Laravel. This package overrides the default Eloquent Auth Driver and Hashing of Laravel and uses the PHPass password hashing and checking methods.

Installation

Install package through Composer.

"require": {
    "ksungcaya/phpass": "~1.0"
}

Then run composer update

$ composer update

Update app/config/app.php and include a reference to this package's service provider in the providers array.

'providers' => [
    'Ksungcaya\Phpass\PhpassServiceProvider'
]

Next is change the driver value to phpass in app/config/auth.php to let Laravel use the PHPass authentication methods.

Usage

Now that PHPass is installed in Laravel, you can now use the normal Auth and Hash methods.

Auth::attemp(array(
            'email'    => $email,
            'password' => $password
          )
      );

Hash::make('secret');
Hash::check('secret', $hashedPassword);

That's it!

Please refer to Laravel documentation on Security to know more about Authentication and Hash methods.

统计信息

  • 总下载量: 160
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-12-05