Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 9 days 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-09-29T09:06:21.000Z (about 1 year ago)
- Last Synced: 2024-08-07T13:04:08.990Z (3 months ago)
- Topics: api, atol, fiscalization, fz-54, php
- Language: PHP
- Homepage:
- Size: 96.7 KB
- Stars: 29
- Watchers: 21
- Forks: 11
- 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 PHPhttps://online.atol.ru/
[![Build Status](https://travis-ci.org/lamoda/atol-client.svg?branch=master)](https://travis-ci.org/lamoda/atol-client)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lamoda/atol-client/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/lamoda/atol-client/?branch=master)
[![Code Coverage](https://scrutinizer-ci.com/g/lamoda/atol-client/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/lamoda/atol-client/?branch=master)
[![Build Status](https://scrutinizer-ci.com/g/lamoda/atol-client/badges/build.png?b=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();
}
}
```