| Install | |
|---|---|
composer require infinety-es/token |
|
| Latest Version: | 1.1 |
| PHP: | >=5.5.9 |
Manages random tokens for password resets and other one-time actions
Install via composer: composer require infinety-es/token
Add services provider to config/app.php:
Infinety\Token\TokenServiceProvider::class,Run php artisan token:migration then php artisan migrate to add the Token database table
Infinety\Token\Token, which can be instantiated by the container. Example: $token = new Token;
$token->add($myId, 'test', 1)
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)