schickling/validators

There is no license information available for the latest version (0.1.0) of this package.

A set of additional validator rules for Laravel 4

0.1.0 2013-08-03 09:19 UTC

This package is not auto-updated.

Last update: 2024-04-22 13:31:47 UTC


README

A set of additional validator rules for Laravel 4

Installation

  1. Add the following to your composer.json and run composer update

    {
        "require": {
            "schickling/validators": "dev-master"
        }
    }
  2. Add Schickling\Validators\ValidatorsServiceProvider to your config/app.php

Available Rules

Boolean

'isEnabled' => 'boolean'

Optional

'isOptional' => 'optional'

Bankaccounts

'myIban' => 'iban',
'myBic' => 'bic'

Upcoming Features

  • Number precision rule
  • language specific string rule (umlauts etc)
  • Array validation

Bitdeli Badge