corbital/random-password

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

generate random password

Installs: 7

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/corbital/random-password

v1.0.2 2021-12-27 09:30 UTC

This package is auto-updated.

Last update: 2025-09-16 15:27:47 UTC


README

generate random password - creating first package for learning purpose only.

installation

using composer

composer require corbital/random-password

How to use

// load composer

require_once __DIR__ . '/vendor/autoload.php';

//use namespace

use Corbital\RandomPassword\RandomPassword;

//create instance

$rp = new RandomPassword();

//print random password using RandomPassword method

echo $rp->RandomPassword(5);