pijush_gupta / password-generator
Simple Password Genarator
dev-main
2022-12-30 11:23 UTC
This package is auto-updated.
Last update: 2025-06-29 02:01:10 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;