goetas-webservices / euro-vies-client
Installs: 2 567
Dependents: 0
Suggesters: 0
Security: 0
Stars: 17
Watchers: 4
Forks: 5
Open Issues: 1
Requires
- goetas-webservices/soap-client: ^0.2.7
- guzzlehttp/psr7: ^1.3
- php-http/guzzle6-adapter: ^1.0
- php-http/message: ^1.0
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-26 18:28:00 UTC
README
This project provides a SOAP client for the European VAT Information Exchange System
More info can be found visiting http://ec.europa.eu/taxation_customs/vies/faq.html
Installing
The recommended way to install goetas-webservices/euro-vies-client
is using Composer, just run:
composer require goetas-webservices/euro-vies-client
Features
- Pure PHP, no dependencies on
ext-soap
- Complete IDE type hinting support
- PSR-7 HTTP messaging compatible
- Multi HTTP client (guzzle, buzz, curl, react)
- No WSDL/XSD parsing on production
- Extensible (event listeners support)
Usage
<?php use GoetasWebservices\SoapServices\SoapClient\ClientFactory; use GoetasWebservices\SoapServices\SoapClient\Builder\SoapContainerBuilder; use GoetasWebservices\Client\EuroVies\SoapContainer; use GoetasWebservices\Client\EuroVies\SoapStubs\CheckVatPortType; require __DIR__ . '/vendor/autoload.php'; // project initialization $container = new SoapContainer(); // use this when cloning this repository and keeping the directory, comment it when including goetas-webservices/euro-vies-client via composer $serializer = SoapContainerBuilder::createSerializerBuilderFromContainer($container)->build(); // uncomment this when including goetas-webservices/euro-vies-client via composer // $serializer = SoapContainerBuilder::createSerializerBuilderFromContainer($container, null, __DIR__ . '/vendor/goetas-webservices/euro-vies-client')->build(); $metadata = $container->get('goetas_webservices.soap_client.metadata_reader'); $factory = new ClientFactory($metadata, $serializer); /** * @var $client CheckVatPortType */ $client = $factory->getClient('http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl','checkVatPort', 'checkVatService'); $result = $client->checkVat("DE", "123456789"); var_dump($result);
Note
The code in this project is provided under the MIT license. For professional support contact goetas@gmail.com or visit https://www.goetas.com