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
Requires
- php: >=7.0
- illuminate/support: >=5.5
This package is auto-updated.
Last update: 2025-10-07 07:19:51 UTC
README
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.