lamhotsimamora/random-string

There is no license information available for the latest version (v1.0.0) of this package.

generator for random string

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:random-string

pkg:composer/lamhotsimamora/random-string

v1.0.0 2024-10-13 13:26 UTC

This package is auto-updated.

Last update: 2025-12-13 16:32:26 UTC


README

composer require lamhotsimamora/random-string

How to use

<?php 

require 'vendor/autoload.php';

$string = new \Lamhotsimamora\RandomString\RandomStringBuilder();

// set length of random string
$string->setLength(25);

echo $string->generate();