lucasnpinheiro / nota_fiscal
Estrutura para tabalhar com nota fical padrão NFe e NFCe
1.0.3
2024-10-09 19:51 UTC
Requires
- php: ~8.1
- ext-curl: *
- nfephp-org/sped-da: ^1.1
- nfephp-org/sped-nfe: ^5.1
Requires (Dev)
- phpunit/phpunit: ^10
README
Intalando o projeto
composer install lucasnpinheiro/nota_fiscal
Exemplo o projeto
<?php use NotaFiscal\Dto\CertificateParamsDto; use NotaFiscal\NotaFiscalBase; require_once '../vendor/autoload.php'; $notaFiscal = new NotaFiscalBase(); $notaFiscal->getCertificate( CertificateParamsDto::create( 'arquivo', '123', '12.123.123/2132-22', 'Razão Social', 'SP', 2, ) );