stgit90 / detect-valid-card
Utility to valid and determine bank card type by stgit90
1.1.2
2024-05-13 14:08 UTC
Requires
- php: >=7.2.5
Requires (Dev)
- phpunit/phpunit: ^9.1
This package is not auto-updated.
Last update: 2025-07-12 23:32:20 UTC
README
Utility to valid and determine bank card type by stgit90
Installation
composer require stgit90/detect-valid-card
Usage
require "/vendor/autoload.php";
use CardValidDetect\ValidDetect;
$detector = new ValidDetect();
$card = '4916847576752405';
if($detector->detect('4916847576752405')->isValid()){
echo $detector->getType() //Visa
}