hipsterjazzbo / laravel-luhn-validator
A luhn algorithm validator for Laravel 4's Validator
Installs: 11 299
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*
This package is auto-updated.
Last update: 2024-10-24 04:35:48 UTC
README
A luhn algorithm validator for Laravel 4's Validator.
Installation
Start by adding this package to your composer.json
:
"require-dev": { "hipsterjazzbo/laravel-luhn-validator": "1.*" }
Now you've got to update composer:
$ composer update
And then add this package to the ServiceProviders
array in your app/config/app.php
:
'HipsterJazzbo\LaravelLuhnValidator\LaravelLuhnValidatorServiceProvider'
Usage
Just specify the new rule when you're defining your rules:
$rules = [ 'card_number' => [ 'required', 'luhn' ] ];