2017 © Pedro Peláez
 

library validator-factory

Standalone library to use Illuminate\Validation package outside the Laravel framework.

image

jeffochoa/validator-factory

Standalone library to use Illuminate\Validation package outside the Laravel framework.

  • Thursday, April 5, 2018
  • by jeffer8a
  • Repository
  • 2 Watchers
  • 12 Stars
  • 131 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 2 Versions
  • 87 % Grown

The README.md

ValidatorFactory

Standalone library to use the Illuminate\Validation package outside the Laravel framework., (*1)

Installation

From your terminal, run:, (*2)

$ composer require jeffochoa/validator-factory

Usage

You need to create a new instance of the ValidatorFactory class., (*3)

$factory = new JeffOchoa\ValidatorFactory();

$validator = $factory->make($data = [], $rules);

This will return an instance of Illuminate\Validation\Validator::class., (*4)

You can learn more about the Laravel Validator in the official documentation website., (*5)

Customizing error messages

You can specify a custom translation root directory, (*6)

$validator->translationsRootPath(__DIR__ . '/../../src/')
    ->make($data = [], $rules = ['foo' => 'required'])

Inside that directory you will need to create the following structure:, (*7)

- lang/
  - en/
    - validation.php

You can customize the structure above by specifying the following values when you create a new instance of the ValidatorFactory::class, (*8)

$factory = new ValidatorFactory($namespace = 'lang', $lang = 'en', $group = 'validation');

If your plan is to use a custom rule object you would generally call the trans helper inside your messages() method when working inside of Laravel. However you will not have access to the trans helper outside of Laravel so you will need to use ValidatorFactory::trans($key) instead., (*9)

The Versions

05/04 2018

dev-master

9999999-dev

Standalone library to use Illuminate\Validation package outside the Laravel framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jefferson Ochoa (Jeff)

05/04 2018

1.0.0

1.0.0.0

Standalone library to use Illuminate\Validation package outside the Laravel framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Jefferson Ochoa (Jeff)