Skip to content

Latest commit

 

History

History
34 lines (20 loc) · 425 Bytes

README.md

File metadata and controls

34 lines (20 loc) · 425 Bytes

numericToken

Simple class to generate numeric tokens

Install

Via Composer

$ composer require hamidjavadi/numeric-token

Usage

<?php

use Hamidjavadi\numericToken;

$token = new numericToken();
echo $token->generate();
// 222195


$token->length = 10;
echo $token->generate();
// 8880301728

License

The MIT License (MIT). Please see License File for more information.