2017 © Pedro PelĂĄez
 

library laravel-secure-passwords

Provide useful ways to ensure strong passwords via validation

image

emiliopedrollo/laravel-secure-passwords

Provide useful ways to ensure strong passwords via validation

  • Thursday, December 21, 2017
  • by emiliopedrollo
  • Repository
  • 1 Watchers
  • 0 Stars
  • 2 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

Laravel Secure Passwords

Build Status Latest Stable Version Total Downloads License Code Climate maintainability, (*1)

This package provides useful ways to ensure strong passwords via validation in Laravel 6 applications., (*2)

The provided new validations:, (*3)

  • alphabetic characters
  • numeric characters
  • mixed case characters
  • symbols
  • common used passwords (provided by SplashData)

Documentation

Installation

Get the package

composer require emiliopedrollo/laravel-secure-passwords:"~0.2"., (*4)

Usage

Now Laravel's native Validator is extended by those rules:, (*5)

  • has_uppercase
  • has_lowercase
  • has_both_cases
  • has_digit
  • has_letter
  • has_symbol
  • not_a_common_password

Example

You can apply these rules as described in the validation section on Laravel's website, (*6)

Validator::make(['password' => 'trustno1']
    'password' => 'has_digit|has_letter|not_a_common_password'
)->passes();   // returns false;

History

[Laravel 5], (*7)

[0.1], (*8)

  • Initial release

License

This package is under the MIT license. See the complete license:, (*9)

Reporting Issues or Feature Requests

Issues and feature requests are tracked on GitHub., (*10)

The Versions

21/12 2017

dev-master

9999999-dev https://github.com/emiliopedrollo/secure-passwords

Provide useful ways to ensure strong passwords via validation

  Sources   Download

MIT

The Requires

 

The Development Requires

by EmĂ­lio B. Pedrollo

laravel validation security password

21/12 2017

v0.2

0.2.0.0 https://github.com/emiliopedrollo/secure-passwords

Provide useful ways to ensure strong passwords via validation

  Sources   Download

MIT

The Requires

 

The Development Requires

by EmĂ­lio B. Pedrollo

laravel validation security password

20/12 2017

v0.1

0.1.0.0 https://github.com/emiliopedrollo/secure-passwords

Provide useful ways to ensure strong passwords via validation

  Sources   Download

MIT

The Requires

 

The Development Requires

by EmĂ­lio B. Pedrollo

laravel validation security password