muath-ye / unique-random-number
Generate ranged digits random number from table id, so its unique
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/muath-ye/unique-random-number
This package is auto-updated.
Last update: 2025-09-24 17:24:17 UTC
README
Generate ranged digits random number from table id, so its unique.
Requirements
Installation
To install through composer, run the following command from terminal:
composer require "muath-ye/unique-random-number"
For laravel users
if you are using laravel project, and you want to use it without declaration the use statement. Register Random
alias on your config/app.php
file.
'aliases' => [ // ..., 'Random' => \Muathye\UniqueRandomNumber\Random::class ]
Usage
<?php // You don't need to declare this use statement if you registered the Random class in config/app.php use Muathye\UniqueRandomNumber\Random; Random::generate(2, 3, 6); // Out Put => 628 Random::generate(1, 4, 6); // Out Put => 8314 Random::generate(1624, 4, 6); // Out Put => 16248 Random::generate(54627, 4, 6); // Out Put => 546276 Random::generate(54627, 4, 6); // Out Put => 546276
Security
If you discover any security-related issues, please email muathye@gmail.com instead of using the issue tracker.
License
The MIT License (MIT). Please see License File for more information.