goetas-webservices/euro-vies-client
Composer 安装命令:
composer require goetas-webservices/euro-vies-client
包简介
README 文档
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
统计信息
- 总下载量: 2.58k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 17
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-15