Skip to content

pH7Software/Secure-Password-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

28 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

PHP Password Generator

๐Ÿ“„ Description

A simple way to generate random cryptographically secure passwords.

๐Ÿ›  Installation (with Composer)

composer require ph7software/secure-password-generator

๐Ÿ›  Server Requirement

๐ŸŽฎ Usage

use PH7\Generator\Password;

echo Password::generate(10); // Generate a 10-length password

By default, the password will contain special characters. You can disable them by mentioning the second argument to false

use PH7\Generator\Password;

// The password won't contain any special characters such as -, _, ~, |, %, ^, !, $, #, @, and ?
echo Password::generate(Password::DEFAULT_LENGTH, false);

You can use the constant Password::DEFAULT_LENGTH which contains 12 as the default value

use PH7\Generator\Password;

// By default, it generates a 12-length password
echo Password::generate(Password::DEFAULT_LENGTH);

Without argument, the function will also generate a 12-character password.

use PH7\Generator\Password;

// By default, it generates a 12-length password
echo Password::generate();

๐Ÿ˜‹ Who cooked it?

Pierre-Henry Soria

@phenrysay pH-7

Pierre-Henry Soria, a highly passionate, zen & pragmatic software engineer ๐Ÿ˜Š

๐Ÿค— Used By...

pH7Builder is using this package for generating default passwords to users. โ€‹

โš–๏ธ License

PHP Password Generator is generously distributed under the MIT.