x-laravel/validation-extend

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

Maintainers

Package info

github.com/X-Laravel/validation-extend

Issues

pkg:composer/x-laravel/validation-extend

Statistics

Installs: 406

Dependents: 0

Suggesters: 0

Stars: 0

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

This package is auto-updated.

Last update: 2026-03-07 08:10:13 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.