Strong String Generator from Smartbee. Easy to use and can be used for strong passwords.
$ composer require smartbee/strong-string-generator
Install like normal class...
$password = new Smartbee\StrongStringGenerator();
echo $password->CreateStrongString();
// Sample Output should be like cg^U*t{BD^6xzUgk+|YV@iPkh4
Class uses min-lenght as 26
charachters and uses alphabet set as ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789?#$!@`.~^&*-_+={}[]|()%
.
You can set max-lenght and character set when you call class. As Example
$password = new Smartbee\StrongStringGenerator(13,"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
echo $password->CreateStrongString();
// Sample Output should be like BrQSBFSPBcBcB