sandorl195 / vatin
Validate VAT identification numbers
3.0.0
2019-03-20 15:12 UTC
Requires
- php: >=5.6.0
Requires (Dev)
- ext-soap: *
- phpunit/phpunit: ^5.7 || ^6.5
Suggests
- ext-soap: Required if you want to check the VAT number via VIES
README
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)] (http://ec.europa.eu/taxation_customs/vies/faq.html#item_16) SOAP web service:
use Ddeboer\Vatin\Validator; $validator = new Validator; $bool = $validator->isValid('NL123456789B01', true);