Skip to content

A set of useful Laravel validation password rules for KISA

License

Notifications You must be signed in to change notification settings

cable8mm/laravel-validation-kisa-rules

Repository files navigation

Laravel Validation KISA Rules

code-style run-tests Packagist Version Packagist Downloads Packagist Dependency Version Packagist Stars Packagist License

This repository contains a helpful Laravel validation rule for KISA passwords. KISA is an organization dedicated to securing the internet network in South Korea. Major websites operating in South Korea are required to adhere to KISA password standards. Therefore, this is a small library designed to verify passwords according to the KISA standard.

Features

  • Implement support for KISA standard validation in Laravel
  • Enable easy installation via Composer

Support & Tested

Available PHP Laravel
8.0 9.x
8.1 9.x
8.1 10.x
8.2 9.x
8.2 10.x
8.2 11.x
8.3 9.x
8.3 10.x
8.3 11.x

Installation

You can install the package via composer:

composer require cable8mm/laravel-validation-kisa-rules

The package will automatically register itself.

Translations

If you wish to edit the package translations, you can run the following command to publish them into your resources/lang folder

php artisan vendor:publish --provider="Cable8mm\ValidationKisaRules\ValidationKisaRulesServiceProvider"

Usage

KisaPassword rule

use Cable8mm\ValidationKisaRules\Rules\KisaPassword;
use Illuminate\Http\Request;

public function store(Request $request)
{
    $validated = $request->validate([
        'password' => ['required', 'confirmed', new KisaPassword()],
    ]);
}

Testing

composer test

Formatting

composer lint
# Modify all files to comply with the PHP coding standards.

composer inspect
# Inspect all files to ensure compliance with PHP coding standards.

Reference

  • KISA password documents : go link

License

The MIT License (MIT). Please see License File for more information.