{"id":14983706,"url":"https://github.com/lamoda/atol-client-bundle","last_synced_at":"2026-03-12T23:31:24.941Z","repository":{"id":46961717,"uuid":"154822518","full_name":"lamoda/atol-client-bundle","owner":"lamoda","description":"Bundle for  ATOL API v3/v4 client for PHP https://github.com/lamoda/atol-client","archived":false,"fork":false,"pushed_at":"2023-10-04T08:05:51.000Z","size":17,"stargazers_count":7,"open_issues_count":0,"forks_count":8,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-06-06T06:41:50.689Z","etag":null,"topics":["atol","bundle","fiscalization","fz-54","php","symfony","symfony-bundle","symfony3","symfony4"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lamoda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-26T11:13:52.000Z","updated_at":"2023-05-16T12:35:41.000Z","dependencies_parsed_at":"2023-10-04T14:30:31.213Z","dependency_job_id":null,"html_url":"https://github.com/lamoda/atol-client-bundle","commit_stats":{"total_commits":8,"total_committers":6,"mean_commits":"1.3333333333333333","dds":0.625,"last_synced_commit":"9a7ad5f578183f401a0457824d9135496e5ce812"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/lamoda/atol-client-bundle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lamoda%2Fatol-client-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lamoda%2Fatol-client-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lamoda%2Fatol-client-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lamoda%2Fatol-client-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lamoda","download_url":"https://codeload.github.com/lamoda/atol-client-bundle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lamoda%2Fatol-client-bundle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30449027,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T21:31:01.033Z","status":"ssl_error","status_checked_at":"2026-03-12T21:30:43.161Z","response_time":114,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["atol","bundle","fiscalization","fz-54","php","symfony","symfony-bundle","symfony3","symfony4"],"created_at":"2024-09-24T14:07:48.463Z","updated_at":"2026-03-12T23:31:24.926Z","avatar_url":"https://github.com/lamoda.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ATOL PHP Client bundle\nBundle for https://github.com/lamoda/atol-client\n\n[![Build Status](https://travis-ci.org/lamoda/atol-client-bundle.svg?branch=master)](https://travis-ci.org/lamoda/atol-client-bundle)\n[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/lamoda/atol-client-bundle/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/lamoda/atol-client-bundle/?branch=master)\n[![Code Coverage](https://scrutinizer-ci.com/g/lamoda/atol-client-bundle/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/lamoda/atol-client-bundle/?branch=master)\n[![Build Status](https://scrutinizer-ci.com/g/lamoda/atol-client-bundle/badges/build.png?b=master)](https://scrutinizer-ci.com/g/lamoda/atol-client-bundle/build-status/master)\n\n## Installation\n\nUsage is as simple as \n\n1. Install library\n\t```bash\n\tcomposer require lamoda/atol-client-bundle\n\t```\n\n2. Register bundle and required JMS Serializer Bundle \n\t```php\n\t// Kernel\n\t\n\tpublic function registerBundles()\n\t{\n\t\t// ...\n\t\t$bundles[] = new \\Lamoda\\AtolClientBundle\\AtolClientBundle();\n\t\t$bundles[] = new \\JMS\\SerializerBundle\\JMSSerializerBundle();\n\t\t// ...\n\t}\n\t```\n\n3. Configure Guzzle client in `services.yaml`, for example:\n\t```yaml\n\tservices:\n\t    guzzle:\n\t        class: \\GuzzleHttp\\Client\n\t```\n4. Configure Symfony to enable `validator` and `enable_annotations`:\n\t```yaml\n\tframework:\n        validation:\n            enabled: true\n            enable_annotations: true\n\t```\n6. Add config for any clients you need:\n\t```yaml\n\tatol_client:\n        clients:\n            v3: # Version 3 of ATOL API. Currently deprecated and will not be supported by ATOL since 01.01.2019\n                version: !php/const Lamoda\\AtolClientBundle\\AtolClientBundle::API_CLIENT_VERSION_3\n                guzzle_client: guzzle # Link to the service that is guzzle\n                guzzle_client_options: [] # Options for guzzle client (optional)\n                base_url: 'http://atol_v3_url' # Base url of ATOL server\n                callback_url: '' # Callback url for ATOL (see docs)\n    \n            default:\n                version: !php/const Lamoda\\AtolClientBundle\\AtolClientBundle::API_CLIENT_VERSION_4\n                guzzle_client: guzzle # Link to the service that is guzzle\n                guzzle_client_options: [] # Options for guzzle client (optional)\n                base_url: 'http://atol_v4_url' # Base url of ATOL server\n\t```\n6. Use `@atol_client.v4` to inject atol client as a dependency\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flamoda%2Fatol-client-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flamoda%2Fatol-client-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flamoda%2Fatol-client-bundle/lists"}