antonshell/egrul-nalog-parser
There is no license information available for the latest version (0.1.0) of this package.
Pdf parser for https://egrul.nalog.ru/
Maintainers
0.1.0
2020-04-05 08:10 UTC
Requires
- php: >=5.4.0
- ext-mbstring: *
- smalot/pdfparser: ^0.11.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
Unknown License 4287dd25b6f6ba645cff5976e659eb0c5eadc832
- Anton Shelyganov <antonshell.woop@yandex.ru>
This package is not auto-updated.
Last update: 2026-06-22 14:03:49 UTC
README
Pdf parser for https://egrul.nalog.ru/
Instalation
composer require "antonshell/egrul-nalog-parser:dev-master"
Demo
See demo for more details
Examples
Parse PDF, auto detect type
<?php $parser = new \antonshell\EgrulNalogParser\Parser(); // parse, auto detect type $path = __DIR__ . '/nalog_pe.pdf'; $results = $parser->parseDocument($path);
Parse PDF for Individual Entrepreneur
<?php $parser = new \antonshell\EgrulNalogParser\Parser(); // parse for Individual Entrepreneur $pathPe = __DIR__ . '/nalog_pe.pdf'; $results = $parser->parseNalogPe($pathPe);
Parse PDF for Organization
<?php $parser = new \antonshell\EgrulNalogParser\Parser(); // parse for Organization $pathOrg = __DIR__ . '/nalog_org.pdf'; $parser->parseNalogOrg($pathOrg);
