Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lorddashme/php-strong-password-generator
A simple package that generate strong random characters that can be use for password.
https://github.com/lorddashme/php-strong-password-generator
generator password php php-library strong-password
Last synced: 14 days ago
JSON representation
A simple package that generate strong random characters that can be use for password.
- Host: GitHub
- URL: https://github.com/lorddashme/php-strong-password-generator
- Owner: LordDashMe
- License: mit
- Created: 2018-01-24T09:24:31.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-01T16:08:45.000Z (almost 2 years ago)
- Last Synced: 2024-11-15T13:13:10.819Z (3 months ago)
- Topics: generator, password, php, php-library, strong-password
- Language: PHP
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP Strong Password Generator
A simple package that generate strong random characters that can be use for password.
[![Latest Stable Version](https://img.shields.io/packagist/v/LordDashMe/php-strong-password-generator.svg?style=flat-square)](https://packagist.org/packages/LordDashMe/php-strong-password-generator) [![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.6-8892BF.svg?style=flat-square)](https://php.net/) [![Coverage Status](https://img.shields.io/coveralls/LordDashMe/php-strong-password-generator/master.svg?style=flat-square)](https://coveralls.io/github/LordDashMe/php-strong-password-generator?branch=master)
## Requirement(s)
- PHP version from 5.6.* up to latest.
## Install
### via Composer
- Use the command below to install the package via composer:
```txt
composer require lorddashme/php-strong-password-generator
```## Usage
- Basic usage:
```php
length(25);// Execute the generation process function.
$strongPasswordGenerator->generate();// Get the generated output.
$strongPasswordGenerator->get(); // "abcde12345..."
```## License
This package is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).