2017 © Pedro Peláez
 

library checkvat

A simple php wrapper to check foreign VAT IDs using SOAP via http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl

image

pemedina/checkvat

A simple php wrapper to check foreign VAT IDs using SOAP via http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl

  • Tuesday, November 22, 2016
  • by pemedina
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

CheckVat WebService Wrapper

Introduction

A simple client for VIES., (*1)

Requirements

  • PHP >= 7.4 (with soap support)

Getting started

Composer

$ composer require pemedina/checkvat

Usage

The library can be included & used on any PHP application., (*2)

Examples

``` php <?php, (*3)

use CheckVat\checkVat as Vat; use CheckVat\checkVatService;, (*4)

require DIR . '/vendor/autoload.php';, (*5)

$service = new checkVatService();, (*6)

$param = new Vat;, (*7)

$param->countryCode='ES'; $param->vatNumber='B78917457'; $result = $service->checkVat( $param);, (*8)

var_dump ( $result);, (*9)

```, (*10)

Feedback and questions

Found a bug or missing a feature? Don't hesitate to create a new issue here on GitHub., (*11)

The Versions

22/11 2016

dev-master

9999999-dev http://github.com/pemedina/checkvat

A simple php wrapper to check foreign VAT IDs using SOAP via http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl

  Sources   Download

BSD

The Requires

  • php >=5.6.0
  • ext-soap *

 

The Development Requires

by Avatar pemedina

webservice euro vat