annaghd/php-credit-card-validator-plus

Validates popular debit and credit cards numbers against regular expressions and Luhn algorithm. Also validates the CVC and the expiration date
13,467 1
Install
composer require annaghd/php-credit-card-validator-plus
Latest Version:1.0.2
PHP:>=5.3.0
License:MIT
Last Updated:Nov 1, 2017
Links: GitHub  ·  Packagist
Maintainer: annaghd

PHP Credit Card Validator

Build Status Coverage Status Latest Stable Version Total Downloads

Validates popular debit and credit cards numbers against regular expressions and Luhn algorithm. Also validates the CVC and the expiration date.

Installation

Require the package in composer.json

"require": {
    "annaghd/php-credit-card-validator-plus": "1.*"
},

If you are using Laravel, add an alias in config/app.php

'aliases' => array(

    'App'             => 'Illuminate\Support\Facades\App',
    ...
    'View'            => 'Illuminate\Support\Facades\View',

    'CreditCard'      => 'Inacho\CreditCard',

),

Usage

Validate a card number knowing the type:

$card = CreditCard::validCreditCard('5500005555555559', 'mastercard');
print_r($card);

Output:

Array
(
    [valid] => 1
    [number] => 5500005555555559
    [type] => mastercard
)

Validate a card number and return the type:

$card = CreditCard::validCreditCard('371449635398431');
print_r($card);

Output:

Array
(
    [valid] => 1
    [number] => 371449635398431
    [type] => amex
)

Validate the CVC

$validCvc = CreditCard::validCvc('234', 'visa');
var_dump($validCvc);

Output:

bool(true)

Validate the expiration date

$validMonth = CreditCard::validMonth('07'); // past date
var_dump($validMonth);

$validYear = CreditCard::validYear('2007'); // past date
var_dump($validYear);

Output:

bool(false)

bool(false)

Tests

Execute the following command to run the unit tests:

vendor/bin/phpunit

Related Packages

inacho/php-credit-card-validator

Validates popular debit and credit cards numbers against regular expressions and...

1,432,913 207
dev-labs/php-credit-card-validator

Validates popular debit and credit cards numbers against regular expressions and...

0 0
intervention/validation

Additional validation rules for the Laravel framework

7,533,368 677
illuminatech/balance

Provides support for Balance accounting system based on debit and credit princip...

44,745 162