sportuondo / firma-xades-cr
此包的最新版本(dev-master)没有可用的许可证信息。
哥斯达黎加电子发票签名包
dev-master
2022-12-07 09:53 UTC
Requires
- php: >=8.1
- robrichards/xmlseclibs: ^3.0.0
This package is not auto-updated.
Last update: 2024-09-26 17:06:36 UTC
README
将hacienda-firmador-php项目(由enzojimenez开发)适配为通过composer安装
安装
composer require stibenamm/firma-xades-cr:dev-master
快速Laravel示例
//routes/web.php Route::get('/', function(){ $firmador = new Stibenamm\FirmaXadesCR\Firmador(); $xml = '/ruta/archivoXml'; $pfx = '/ruta/llaveCriptografica'; $pin = '0000'; $archivo = $firmador->firmarXml($pfx,$pin,$xml,$firmador::TO_XML_STRING); return response($archivo, '200')->header('Content-Type', 'text/xml'); });