https://github.com/schickling/laravel-validators
A set of additional validator rules for Laravel 4
https://github.com/schickling/laravel-validators
Last synced: about 1 year ago
JSON representation
A set of additional validator rules for Laravel 4
- Host: GitHub
- URL: https://github.com/schickling/laravel-validators
- Owner: schickling
- Created: 2013-07-30T07:52:42.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-10-16T09:09:59.000Z (almost 13 years ago)
- Last Synced: 2025-04-24T01:38:38.821Z (over 1 year ago)
- Language: PHP
- Size: 146 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
laravel-validators [](https://travis-ci.org/schickling/laravel-validators) [](https://coveralls.io/r/schickling/laravel-validators)
==================
A set of additional validator rules for Laravel 4
## Installation
1. Add the following to your composer.json and run `composer update`
```json
{
"require": {
"schickling/validators": "dev-master"
}
}
```
2. Add `Schickling\Validators\ValidatorsServiceProvider` to your config/app.php
## Available Rules
#### Boolean
```php
'isEnabled' => 'boolean'
```
#### Optional
```php
'isOptional' => 'optional'
```
#### Bankaccounts
```php
'myIban' => 'iban',
'myBic' => 'bic'
```
## Upcoming Features
* Number precision rule
* language specific string rule (umlauts etc)
* Array validation
[](https://bitdeli.com/free "Bitdeli Badge")