wearesho-team/yii-token-registration

This package is abandoned and no longer maintained. The author suggests using the wearesho-team/yii-tokens package instead.

3.2.2 2019-04-09 11:20 UTC

README

Scrutinizer Code Quality Code Coverage Build Status

Verifying some action by sending token (SMS, Email, Telegram etc.) Compatible only with MySQL and PostgreSQL
CHANGELOG

Installation

composer require wearesho-team/yii-tokens:^3.0

Migrations

  • Copy migrations into your project
cd path-to-your-project
cp -R ./vendor/wearesho-team/yii-tokens/migrations ./console/migrations

Configuration

Environment

Default TokenRepositoryConfig loads configuration from environment variables. Environment variables name may be changed, defaults:

  • TOKEN_EXPIRE_MINUTES - minutes from creating token when it will be invalidated
  • TOKEN_VERIFY_LIMIT - maximum verifying limit (used by TokenValidator)
  • TOKEN_DELIVERY_LIMIT - maximum sending limit (used by TokenRepository, send method)

Container

You should configure your DI-container to use environment config:

<?php
// bootstrap.php

use Wearesho\Yii\Interfaces\TokenRepositoryConfigInterface;
use Wearesho\Yii\Configs\TokenRepositoryConfig;

Yii::$container->set(
    TokenRepositoryConfigInterface::class,
    [
        'class' => TokenRepositoryConfig::class,
        
        // Changing environment variables names
        'expirePeriodKey' => 'TOKEN_EXPIRE_MINUTES', // optional
        'verifyLimitKey' => 'TOKEN_VERIFY_LIMIT', // optional
        'deliveryLimitKey' => 'TOKEN_DELIVERY_LIMIT', // optional
        
        // Defaults (if no env variables set)
        'defaultExpirePeriod' => 30, // optional
        'defaultDeliveryLimit' => 3, // optional
        'defaultVerifyLimit' => 3, // optional
    ]
);

TODO

  1. Documentation
  2. Tests for exceptions

License

Unlicensed