Skip to content
/ vatin Public
forked from ddeboer/vatin

Validate VAT identification numbers

License

Notifications You must be signed in to change notification settings

ibqn/vatin

This branch is 6 commits behind ddeboer/vatin:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Dec 22, 2020
72acbef · Dec 22, 2020

History

65 Commits
May 5, 2020
Dec 22, 2020
May 30, 2020
Jan 30, 2017
Jan 21, 2017
Aug 10, 2014
Dec 27, 2019
Oct 6, 2012
Dec 22, 2020
Jan 5, 2019
Jan 21, 2017

Repository files navigation

VATIN

Build Status Scrutinizer Code Quality Code Coverage Latest Stable Version

A small PHP library for validating VAT identification numbers (VATINs).

Installation

This library is available on Packagist:

$ composer require ddeboer/vatin

If you want to use this library in a Symfony application, you can use the VatinBundle instead.

Usage

Validate a VAT number’s format:

use Ddeboer\Vatin\Validator;

$validator = new Validator;
$bool = $validator->isValid('NL123456789B01');

Additionally check whether the VAT number is in use, with a call to the VAT Information Exchange System (VIES) SOAP web service:

use Ddeboer\Vatin\Validator;

$validator = new Validator;
$bool = $validator->isValid('NL123456789B01', true);

About

Validate VAT identification numbers

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%