superfaktura / eet
EET (Electronic records of sales for Czech Ministry of Finance) Client for PHP, based on ondrejnov/eet
Installs: 5 789
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=5.6.0
- ext-curl: *
- ext-mbstring: *
- ext-openssl: *
- ext-soap: *
- robrichards/wse-php: 2.0.*
- robrichards/xmlseclibs: ^3.1
Requires (Dev)
- phpunit/phpunit: >=5.7.5
Suggests
- ramsey/uuid: Useful tool for generating UUIDv4
This package is not auto-updated.
Last update: 2025-04-01 09:02:18 UTC
README
Installation
Install superfaktura/eet using Composer:
$ composer require superfaktura/eet
Dependencies
- PHP >=5.6
- robrichards/wse-php
- robrichards/xmlseclibs
- php extensions: php_openssl, php_soap, php_curl, php_mbstring
Example Usage
Sample codes are located in examples/ folder
use Po1nt\EET\Dispatcher; use Po1nt\EET\FileCertificate; use Po1nt\EET\Receipt; $certificate = new FileCertificate(DIR_CERT . '/EET_CA1_Playground-CZ1212121218.p12', 'eet'); $dispatcher = new Dispatcher(PLAYGROUND_WSDL, $certificate); $r = new Receipt(); $r->uuid_zpravy = 'b3a09b52-7c87-4014-a496-4c7a53cf9120'; $r->dic_popl = 'CZ1212121218'; $r->id_provoz = '181'; $r->id_pokl = '1'; $r->porad_cis = '1'; $r->dat_trzby = new \DateTime(); $r->celk_trzba = 1000; echo $dispatcher->send($r); // FIK code should be returned
License
MIT