infinety-es / token
Custom token generation
1.1
2016-05-02 15:37 UTC
Requires
- php: >=5.5.9
- illuminate/support: 5.1.* || 5.2.*
- vinkla/hashids: ^2.2
Requires (Dev)
- graham-campbell/testbench: ^3.1
- phpunit/phpunit: ^4.8 || ^5.0
This package is auto-updated.
Last update: 2024-10-12 23:23:21 UTC
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:migration
thenphp artisan migrate
to 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)