https://github.com/lamoda/atol-client
ATOL API v3/v4/v5 client for PHP
https://github.com/lamoda/atol-client
api atol fiscalization fz-54 php
Last synced: about 1 year ago
JSON representation
ATOL API v3/v4/v5 client for PHP
- Host: GitHub
- URL: https://github.com/lamoda/atol-client
- Owner: lamoda
- License: mit
- Created: 2018-10-26T11:12:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-02-13T08:56:07.000Z (over 1 year ago)
- Last Synced: 2025-04-09T16:04:03.917Z (about 1 year ago)
- Topics: api, atol, fiscalization, fz-54, php
- Language: PHP
- Homepage:
- Size: 90.8 KB
- Stars: 29
- Watchers: 20
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ATOL PHP Client
ATOL API v3/v4/v5 client for PHP
https://online.atol.ru/
[](https://travis-ci.org/lamoda/atol-client)
[](https://scrutinizer-ci.com/g/lamoda/atol-client/?branch=master)
[](https://scrutinizer-ci.com/g/lamoda/atol-client/?branch=master)
[](https://scrutinizer-ci.com/g/lamoda/atol-client/build-status/master)
## Installation
Usage is as simple as
1. Install library
```bash
composer require lamoda/atol-client
```
2. Better to use this library with symfony: https://github.com/lamoda/atol-client-bundle
3. But you can configure it manually (you will probably need some factory:
```php
build();
}
private static function createValidator(): ValidatorInterface
{
return Validation::createValidatorBuilder()
->enableAnnotationMapping()
->getValidator();
}
}
```