x-laravel/validation-extend

This package is abandoned and no longer maintained. No replacement package was suggested.

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

Maintainers

Package info

github.com/x-laravel/validation-extend

pkg:composer/x-laravel/validation-extend

Statistics

Installs: 408

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-04-12 09:44:41 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.