bespin/datavalidation-taxid

Library to verify tax ids

v1.3.2 2025-05-20 12:21 UTC

This package is auto-updated.

Last update: 2025-05-20 12:25:10 UTC


README

Library to verify tax ids

List of supported countries

Country Name Information
Germany Steuerliche Identifikationsnummer Wikipedia - Steuerliche Identifikationsnummer

How to use

composer require bespin/datavalidation-taxid

<?php
use Bespin\DataValidation;
if (DataValidation\TaxId::verify('xxx', DataValidation\Country::Germany)) {
    echo 'xxx is a valid taxId';
} else {
    echo 'xxx is not a valid taxId';
}