pijush_gupta/password-generator

Simple Password Genarator

Maintainers

Package info

github.com/Pijushgupta/php-password-generator

pkg:composer/pijush_gupta/password-generator

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2022-12-30 11:23 UTC

This package is auto-updated.

Last update: 2026-03-29 01:01:09 UTC


README

Clone the repo
git clone https://github.com/Pijushgupta/php-password-generator.git
include_once 'Location of password.php'
OR
Use Composer
composer require pijush_gupta/password-generator:dev-main
Using in the project
use pgrandom\password;

$createObject = new password();
echo $createObject;
OR
$createObject = new password(
	16 /*length*/,
	true /* add numbers */,
	true /* add symbols */
	);
echo $createObject;