stgit90/detect-valid-card

Utility to valid and determine bank card type by stgit90

1.1.2 2024-05-13 14:08 UTC

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
}