credencys/helloworld

Generate random password of a given length

Maintainers

Package info

github.com/rushabhcredencys/helloworld

pkg:composer/credencys/helloworld

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2023-04-03 12:11 UTC

This package is not auto-updated.

Last update: 2026-04-15 00:53:21 UTC


README

Generate random password of a given length

Installation

This project using composer.

$ composer require credencys/helloworld

Usage

Genrate random password.

<?php

use RandomPassword\Password;

$password = new Password(10);
echo $password->generate();