Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Zxcvbn Bundle Laravel Package

createnl/zxcvbn-bundle

Symfony bundle integrating zxcvbn-php for password strength scoring with user-data hints, localized feedback (EN/NL/FR), and support for custom matchers. Provides a factory service to create a Zxcvbn instance for easy use in controllers and services.

View on GitHub
Deep Wiki
Context7

Scrutinizer Code Quality Coverage Status CI Packagist

Zxcvbn Symfony Bundle

A bundle to integrate zxcvbn-php with your symfony app. Supports localization and custom matchers.

Installation

composer require createnl/zxcvbn-bundle

Basic Usage

use Createnl\ZxcvbnBundle\ZxcvbnFactoryInterface;

class PasswordController
{
    public function updatePassword(string $password, ZxcvbnFactoryInterface $zxcvbnFactory)
    {
        $userData = [
          'Marco',
          'marco@example.com'
        ];

        $zxcvbn = $zxcvbnFactory->createZxcvbn();

        $weak = $zxcvbn->passwordStrength($password, $userData);
        echo $weak['score']; // will print 0
        
        $strong = $zxcvbn->passwordStrength('correct horse battery staple');
        echo $strong['score']; // will print 4

        echo $weak['feedback']['warning']; // will print user-facing feedback on the password, set only when score <= 2
        echo $weak['feedback']['suggestions']; // may contain user-facing suggestions to improve the score
    }
}

Localization

This package supports the localization of warning and suggestion messages. Checks on common passwords, words and (family) names are only in English (US). But you can tag your own matcher to extend to your needs.

Supported languages:

  • Dutch πŸ‡³πŸ‡±
  • English πŸ‡ΊπŸ‡Έ
  • French πŸ‡«πŸ‡·

More about localization in Symfony.

Adding translations

If you are missing translations in your language you may consider creating (and contribute) them.

Override in your project:

  1. Open messages.en.yaml
  2. Copy the contents to your project's translation file
  3. Change to your needs

Contributing a language:

  1. Fork this repository
  2. Copy messages.en.yaml
  3. Change the filename to messages.LOCALE.yaml (for example messages.es.yaml)
  4. Open it up and translate the right-hand values to your language
  5. Create a Pull Request
  6. Thank you!

Extending matchers

If you created your own matcher you can tag them with zxcvbn.matcher in your service container.

services:
  App\ZxcvbnMatchers\:
    resource: '../src/ZxcvbnMatchers'
    tags: ['zxcvbn.matcher']
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
emuniq/filament-browser-notifications
syriable/filament-translator
hungnm28/livewire-form
wenprise/eloquent
crudly/encrypted
fadion/bouncy
cuci/prototurk-sdk
gos/pubsub-router-bundle
cuci/prototurk-sdk-symfony
clementtalleu/easyadmin-markdown-bundle
codeflextech/permission-manager
karnoweb/livewire-datepicker
sayedenam/sayed-dashboard
milito/query-filter
apiboxsym/user-bundle
apiboxsym/health-check-bundle
jayeshmepani/jpl-moshier-ephemeris-php
elnasnato/laraliveui
labrodev/rest-sdk
sampaui/sampaui