wucdbm/credit-card-guesser

A yet another credit card type guesser

v0.0.1 2018-08-13 22:09 UTC

This package is auto-updated.

Last update: 2024-04-16 07:38:41 UTC


README

<?php
// Guess card type
$guesser = new \Wucdbm\CreditCardGuesser\TypeGuesser();
try {
    $type = $guesser->guess('1234 1234 1234 1234');
} catch (\Wucdbm\CreditCardGuesser\Exception\UnknownCardTypeException $e) {
    // failed to match any of the built-in types
}
// Change Code for a particular card type
$guesser->setCode('Visa', 'SomeOtherCode');
// Change Regex for a particular card type
$guesser->setRegex('Visa', '/anotherRegex1234567/');
// Add another card type
$guesser->addCard('VisaElectron', 'VI', '/someRegex/');
// Remove card type
$guesser->removeCard('Visa');

A word on Regex expressions

Regexes have been collected from the following libraries

Contribution

If you need another card type to be included in the standard config, please submit a PR