lucasnpinheiro / nota_fiscal
Estrutura para tabalhar com nota fical padrão NFe e NFCe
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/lucasnpinheiro/nota_fiscal
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, ) );