lamoda/atol-client-bundle

Symfony Bundle for integration with lamoda/atol-client

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 7

Watchers: 19

Forks: 8

Open Issues: 0

Type:symfony-bundle

1.2.1 2023-10-04 08:02 UTC

This package is auto-updated.

Last update: 2024-03-04 08:59:38 UTC


README

Bundle for https://github.com/lamoda/atol-client

Build Status Scrutinizer Code Quality Code Coverage Build Status

Installation

Usage is as simple as

  1. Install library

    composer require lamoda/atol-client-bundle
  2. Register bundle and required JMS Serializer Bundle

    // Kernel
    
    public function registerBundles()
    {
    	// ...
    	$bundles[] = new \Lamoda\AtolClientBundle\AtolClientBundle();
    	$bundles[] = new \JMS\SerializerBundle\JMSSerializerBundle();
    	// ...
    }
  3. Configure Guzzle client in services.yaml, for example:

    services:
        guzzle:
            class: \GuzzleHttp\Client
  4. Configure Symfony to enable validator and enable_annotations:

    framework:
        validation:
            enabled: true
            enable_annotations: true
  5. Add config for any clients you need:

    atol_client:
        clients:
            v3: # Version 3 of ATOL API. Currently deprecated and will not be supported by ATOL since 01.01.2019
                version: !php/const Lamoda\AtolClientBundle\AtolClientBundle::API_CLIENT_VERSION_3
                guzzle_client: guzzle # Link to the service that is guzzle
                guzzle_client_options: [] # Options for guzzle client (optional)
                base_url: 'http://atol_v3_url' # Base url of ATOL server
                callback_url: '' # Callback url for ATOL (see docs)
    
            default:
                version: !php/const Lamoda\AtolClientBundle\AtolClientBundle::API_CLIENT_VERSION_4
                guzzle_client: guzzle # Link to the service that is guzzle
                guzzle_client_options: [] # Options for guzzle client (optional)
                base_url: 'http://atol_v4_url' # Base url of ATOL server
  6. Use @atol_client.v4 to inject atol client as a dependency