Download the PHP package frbit/validator-loader-laravel without Composer
On this page you can find all versions of the php package frbit/validator-loader-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download frbit/validator-loader-laravel
More information about frbit/validator-loader-laravel
Files in frbit/validator-loader-laravel
Package validator-loader-laravel
Short Description Service provider to load Laravel validator definitions from files or directories
License MIT
Informations about the package validator-loader-laravel
Service provider for Validator Loader
Allows you to source your validation rules out into files (.json, .yml, .php) or structure them in directories. Comes with a simple inheritance feature and variables to reduce writing the same regex (or whatnot) over and over again (see the Validator Validator Loader package).
Installation
Now add the service provider and the facade (if you want) to app/config/app.php
Usage
This package provides a facade and registeres with the IoC Container.
Please see the readme of the Validator Loader package for examples for validation rules.
Using the facade
Somewhere in your model or controller:
Using the IoC
Somewhere in your model or controller:
Configuration
First publish the configuration
You can find the config in app/config/packages/frbit/validator-loader-laravel
Rules in file
Having all validation rules in a single file. Set source
to file
and write your validation rules in sources.file
:
Rules in directory
When extensive validation rules are required or a neat structure is preferred. Set source
to directory
and write your validation rules in sources.directory
:
Rules in array
For testing, I suppose. Set source
to array
and write your validation rules in sources.array
:
Caching
Especially for directory
sources, loading validation rules can lead to increased disk i/o on each request which reduces performances. Caching allows you to mitigate this.
All versions of validator-loader-laravel with dependencies
illuminate/support Version 4.2.*
frbit/validator-loader Version >=0.1.3