stibenamm/firma-xades-cr

There is no license information available for the latest version (dev-master) of this package.

Paquete para la firma de facturacion electronica costa rica

dev-master 2019-07-10 18:45 UTC

This package is auto-updated.

Last update: 2024-05-11 14:22:35 UTC


README

Adaptación del proyecto hacienda-firmador-php de enzojimenez para instalarse mediante composer

Instalación

composer require stibenamm/firma-xades-cr:dev-master

Ejemplo rápido 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');
});