
Business::CardInfo - Get/Validate data from credit & debit cards

use Business::CardInfo;
my $card_info = Business::CardInfo->new(number => '4917 3000 0000 0008');
print $card_info->type, "\n"; # prints Visa Electron
$card_info->number('5404 0000 0000 0001');
print $card_info->type, "\n"; # prints MasterCard


Possible return values are:
Visa Electron Visa MasterCard Diners Club Maestro Solo AMEX Discover JCB Unknown


Please report any bugs or feature requests to bug-business-cardtype at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Business-CardInfo. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.
perldoc Business::CardInfo
You can also look for information at:

purge: Simon Elliott <cpan@browsing.co.uk> wreis: Wallace Reis <reis.wallace@gmail.com>

To Airspace Software Ltd <http://www.airspace.co.uk>, for the sponsorship.

This library is free software under the same license as perl itself.