infinety-es/token
Composer 安装命令:
composer require infinety-es/token
包简介
Custom token generation
关键字:
README 文档
README
Manages random tokens for password resets and other one-time actions
Installation
-
Install via composer:
composer require infinety-es/token -
Add services provider to
config/app.php:Infinety\Token\TokenServiceProvider::class,
-
Run
php artisan token:migrationthenphp artisan migrateto add the Token database table
Usage
- Tokens are handled via
Infinety\Token\Token, which can be instantiated by the container. Example:
$token = new Token; $token->add($myId, 'test', 1)
- Token parameters:
- Reference: integer ID of the object referred to by the token, e.g. User ID
- Type: string determining the type of the token
- Expires: integer determining how many minutes the token will remain valid for, null (forever) is default
Token::new(int $ref, string $type, int $expires = null)returns a hasID 40-character codeToken::find(string $code, string $type, bool $$returnRef = true)returns the reference ID or null if $returnId is = true, or Hashids decoded stringsToken::remove(string $code, string $type)deletes the token associated with the code (if found)
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-05-02