bonds23 / alphanumnique
a Small library for generate a unique alphanumeric
Installs: 28
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/bonds23/alphanumnique
This package is not auto-updated.
Last update: 2025-11-01 01:23:48 UTC
README
a Small Library For Generate an Unique Alphanumeric
Inittial
use Bonds23\Alphanumnique;
// Create new instance of generator class.
$generator = new Alphanumnique;
// Set token length.
$tokenLength = 32;
// Call method to generate random string.
$token = $generator->generate($tokenLength);