motonix/nalogegr

There is no license information available for the latest version (v1.0.20) of this package.

Pdf parser for https://egrul.nalog.ru/

Installs: 300

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/motonix/nalogegr

v1.0.20 2022-02-24 11:57 UTC

README

Pdf parser for https://egrul.nalog.ru/

Instalation

composer require "motonix/nalogegr"

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);