multiegg/multiegg-installer

There is no license information available for the latest version (dev-main) of this package.

dev-main 2023-03-19 16:22 UTC

This package is auto-updated.

Last update: 2023-03-19 16:23:46 UTC


README

Generate random password of a given length

Installation

This project using composer.

$ composer require MultiEgg/multiegg-installer

Usage

Genrate random password.

<?php

use RandomPassword\Password;

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