taocomp/php-sdicoop-client
Composer 安装命令:
composer require taocomp/php-sdicoop-client
包简介
A PHP package for connecting to Italian Exchange System (aka SdI) web services
README 文档
README
A PHP package for connecting to Italian Exchange System (aka “SdI”) web services.
(Pacchetto PHP per inviare fatture e notifiche ai webservices del SdI).
Please refer to
- PHP SdICoop - Server to implement your web services required by SdI
- PHP E-invoice It for managing italian e-invoice and notice XML formats
See Forum Italia - Fatturazione Elettronica for server configuration, interoperability tests, etc. In particular:
- Apache configuration
- Accreditamento SDICoop: configurazione SSL su Apache - Fatturazione Elettroni…
- Interoperability tests
- Test Interoperabilità Soluzioni - Fatturazione Elettronica - Forum Italia
Getting started
Dependencies
- PHP >=5.5
php-curlphp-soap
Install
Composer
composer require taocomp/php-sdicoop-client
Manually
- Clone/download the repository
require_once('/path/to/php-sdicoop-client/vendor/autoload.php');
Namespaces
Please note namespace is changed (v0.1.5), it is now Taocomp\Einvoicing\SdicoopClient.
So to use e.g. Client class:
use \Taocomp\Einvoicing\SdicoopClient\Client;
Setup
According to Italian Exchange System (aka SdI), you need:
- a client key
- a client certificate
- a CA certificate
to send invoices and notices to SdI web services.
Additionally you must provide an endpoint to connect to and the correspondent WSDL for each web service.
You can configure key and certs as follow:
Client::setPrivateKey('/path/to/client.key');
Client::setClientCert('/path/to/client.pem');
Client::setCaCert('/path/to/ca.pem');
You can also configure a proxy if needed:
Client::setProxyUrl('proxy_url');
Client::setProxyAuth('username:password');
And then you can instantiate the client by providing endpoint/WSDL.
Web service SdIRiceviFile (test) for sending invoices:
$client = new Client(array(
'endpoint' => 'https://testservizi.fatturapa.it/ricevi_file',
'wsdl' => '/path/to/php-sdicoop-client/assets/wsdl/SdIRiceviFile_v1.0.wsdl'
));
Web service SdIRiceviNotifica (test) for sending notices:
$client = new Client(array(
'endpoint' => 'https://testservizi.fatturapa.it/ricevi_notifica',
'wsdl' => '/path/to/php-sdicoop-client/assets/wsdl/SdIRiceviNotifica_v1.0.wsdl'
));
Or you can pass all parameters (key, certs, wsdl, endpoint) to client constructor:
$client = new Client(array(
'key' => '/path/to/client.key',
'cert' => '/path/to/client.pem',
'ca_cert' => '/path/to/ca.pem',
'endpoint' => 'https://testservizi.fatturapa.it/ricevi_file',
'wsdl' => '/path/to/php-sdicoop-client/assets/wsdl/SdIRiceviFile_v1.0.wsdl'
));
Send invoices to SdI (web service “SdIRiceviFile”)
$fileSdI = new FileSdIBase();
$fileSdI->load('/path/to/invoice.xml');
$response = new RispostaSdIRiceviFile($client->RiceviFile($fileSdI));
// Process response:
// -----------------------------------------
// $id = $response->IdentificativoSdI;
// $datetime = $response->DataOraRicezione;
// $error = $response->Errore;
// -----------------------------------------
See examples/invoice.php for a working example.
You can also send \Taocomp\Einvoicing\FatturaElettronica objects: see https://github.com/taocomp/php-e-invoice-it.
Send notices to SdI (web service “SdIRiceviNotifica”, endpoint test)
$fileSdI = new FileSdI();
$fileSdI->load('/path/to/notice.xml');
$response = new RispostaSdINotificaEsito($client->NotificaEsito($fileSdI));
// Process response:
// ----------------------------------
// $result = $response->Esito;
// $discard = $response->ScartoEsito;
// $discardFilename = $discard->NomeFile;
// $discardFile = $discard->File;
// ----------------------------------
See examples/notice.php for a working example.
You can also send \Taocomp\Einvoicing\EsitoCommittente objects: see https://github.com/taocomp/php-e-invoice-it.
Credits
We want to thank all contributors of Forum Italia - Fatturazione Elettronica who have shared their snippets and any available info.
Thanks to Luca Cristofalo for testing the code on his old PHP 5.5.38. :-)
License
GPLv3.
taocomp/php-sdicoop-client 适用场景与选型建议
taocomp/php-sdicoop-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 8.13k 次下载、GitHub Stars 达 22, 最近一次更新时间为 2018 年 12 月 21 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 taocomp/php-sdicoop-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 taocomp/php-sdicoop-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 8.13k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 24
- 点击次数: 22
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2018-12-21