x-laravel/validation-extend

Adds rules that may be required that are not in the Laravel validation class.

Installs: 399

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

pkg:composer/x-laravel/validation-extend

v1.0.0 2021-02-06 20:41 UTC

This package is auto-updated.

Last update: 2025-10-07 07:19:51 UTC


README

Latest Stable Version Total Downloads Dependents License

StyleCI

Introduction

Adds rules that may be required that are not in the Laravel validation class.

Requirements

Laravel >=5.5. Other than that, this library has no requirements.

Install

$ composer require x-laravel/validation-extend

Example Usage

use Illuminate\Support\Facades\Validator;

$validator = Validator::make($request->all(), [
    'staff_name' => 'required|human_name',
]);

License

This package is open source software licensed under the MIT license.