Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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).