aran/vat-lookup

There is no license information available for the latest version (dev-master) of this package.

A very simple, light weight PHP client for validating any EU VAT number against the official europa.eu API

Maintainers

Package info

github.com/aran112000/EU-VAT-Number-Validation

pkg:composer/aran/vat-lookup

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

dev-master 2019-08-28 10:12 UTC

This package is not auto-updated.

Last update: 2026-03-20 15:50:26 UTC


README

A very simple, light weight PHP client for validating EU VAT numbers against the central europa.eu database.

Here's a very simple example of this client in action:

$vat_number = '123 4567 89'; // The VAT number you wish to lookup
$country_code = 'GB';

$details = (new vatRegistration)->checkVat($vat_number, $country_code);

var_dump($details)