PHPackages                             divineomega/password-suggester - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. divineomega/password-suggester

Abandoned → [jord-jd/password-suggester](/?search=jord-jd%2Fpassword-suggester)Library[Utility &amp; Helpers](/categories/utility)

divineomega/password-suggester
==============================

Migrated package jord-jd/password-suggester

v3.0.0(6mo ago)01LGPL-3.0-onlyPHPPHP &gt;=7.1CI passing

Since Jun 22Pushed 3w agoCompare

[ Source](https://github.com/Jord-JD/password-suggester)[ Packagist](https://packagist.org/packages/divineomega/password-suggester)[ GitHub Sponsors](https://github.com/DivineOmega)[ RSS](/packages/divineomega-password-suggester/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (4)Dependencies (4)Versions (4)Used By (0)

Password Suggester
==================

[](#password-suggester)

Secure, dependency-free password generation for PHP 7.1 through current releases. The default strategies now generate 20 alphanumeric characters, 20 numeric digits, or six random words using cryptographically secure randomness.

Version 4 removes the old Laravel/NIST validation dependency and global application-container mutations. By default, suggestions must contain at least 15 characters. Applications that use a breach blocklist or another password policy can inject their own validator callback.

Installation
------------

[](#installation)

To install Password Suggester, run the following Composer command from the root of your project.

```
composer require jord-jd/password-suggester
```

Usage
-----

[](#usage)

See the following basic usage example.

```
use JordJD\PasswordSuggester\PasswordSuggester;
use JordJD\PasswordSuggester\SuggestionStrategies\AlphanumericStrategy;
use JordJD\PasswordSuggester\SuggestionStrategies\NumbersStrategy;
use JordJD\PasswordSuggester\SuggestionStrategies\WordsStrategy;

require_once __DIR__.'/../vendor/autoload.php';

$passwordSuggester = new PasswordSuggester();

$strategy = new AlphanumericStrategy();
//$strategy = new WordsStrategy();
//$strategy = new NumbersStrategy();

echo $passwordSuggester->suggest($strategy);
echo PHP_EOL;
```

To apply an application-specific policy:

```
$passwordSuggester = new PasswordSuggester(function ($password) {
    return strlen($password) >= 20 && !myBreachServiceContains($password);
});

$passwordSuggester->setMaxAttempts(250);
```

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance83

Actively maintained with recent releases

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1215 days

Total

3

Last Release

181d ago

Major Versions

v1.0.0 → v2.0.02026-02-14

v2.0.0 → v3.0.02026-02-14

### Community

Maintainers

![](https://www.gravatar.com/avatar/c580cdf7c14898fff179cdfc1085892091d5d2f49d917873a12365af9ac77c93?d=identicon)[Jord-JD](/maintainers/Jord-JD)

---

Top Contributors

[![Jord-JD](https://avatars.githubusercontent.com/u/650645?v=4)](https://github.com/Jord-JD "Jord-JD (14 commits)")

### Embed Badge

![Health badge](/badges/divineomega-password-suggester/health.svg)

```
[![Health](https://phpackages.com/badges/divineomega-password-suggester/health.svg)](https://phpackages.com/packages/divineomega-password-suggester)
```

###  Alternatives

[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[yajra/laravel-datatables-oracle

jQuery DataTables API for Laravel

4.9k36.9M383](/packages/yajra-laravel-datatables-oracle)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

265192.2k1](/packages/erag-laravel-disposable-email)[illuminate/session

The Illuminate Session package.

9939.9M884](/packages/illuminate-session)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9922.4M146](/packages/roots-acorn)[flarum/core

Delightfully simple forum software.

211.5M2.5k](/packages/flarum-core)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
