PHP Classes

File: composer.json

Recommend this page to a friend!
  Classes of Edward Paul   Laravel Password History Validation   composer.json   Download  
File: composer.json
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Password History Validation
Prevent users from reusing recently used passwords
Author: By
Last change:
Date: 4 years ago
Size: 1,366 bytes
 

Contents

Class file image Download
{ "name": "infinitypaul/laravel-password-history-validation", "description": "Prevent users from reusing recently used passwords", "keywords": [ "infinitypaul", "laravel-password-history-validation", "laravel", "password" ], "homepage": "https://github.com/infinitypaul/laravel-password-history-validation", "license": "MIT", "type": "library", "authors": [ { "name": "Edward Paul", "email": "infinitypaul@live.com", "role": "Developer" } ], "require": { "php": "^7.1" }, "require-dev": { "orchestra/testbench": "^4.0", "phpunit/phpunit": "^8.0" }, "autoload": { "psr-4": { "Infinitypaul\\LaravelPasswordHistoryValidation\\": "src" } }, "autoload-dev": { "psr-4": { "Infinitypaul\\LaravelPasswordHistoryValidation\\Tests\\": "tests" } }, "scripts": { "test": "vendor/bin/phpunit", "test-coverage": "vendor/bin/phpunit --coverage-html coverage" }, "config": { "sort-packages": true }, "extra": { "laravel": { "providers": [ "Infinitypaul\\LaravelPasswordHistoryValidation\\LaravelPasswordHistoryValidationServiceProvider" ] } } }