lamoda / payture-inpay-bundle
Client Bundle for Payture InPay API
Installs: 125
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 30
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.1
- lamoda/payture-inpay-client: ^1.2
- symfony/config: ^3.4 || ^4.0
- symfony/dependency-injection: ^3.4 || ^4.0
- symfony/http-kernel: ^3.4 || ^4.0
- symfony/yaml: ^3.4 || ^4.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.14
- phpunit/phpunit: ^7.5
- symfony/framework-bundle: ^3.4 || ^4.0
This package is auto-updated.
Last update: 2024-10-30 14:11:31 UTC
README
Wrapper bundle for lamoda/payture-inpay-php-client
Installation
composer require lamoda/payture-inpay-bundle
<?php // Kernel /// ... $bundles[] = new \Lamoda\Payture\InPayBundle\PaytureInPayBundle(); ///
# services.yaml payture_inpay: terminals: TestTerminal: auth: key: MerchantKey password: MerchantPassword url: https://sandbox.payture.com
Usage
<?php $container->get(\Lamoda\Payture\InPayBundle\Terminal\TerminalRegistry::class)->get('TestTerminal')->charge('ORDER_NUMBER_123', 100500);
Tuning
Custom guzzle client
You can configure guzzle client used for every terminal using payture_inpay.guzzle_client
option key,
passing your own guzzle client service ID there. New client would be instantiated for you if none provided, i.e
default_options: operations: Init: timeout: 2 connect_timeout: 0.5
Client configuration
Currently you can configure timeouts for each operation using both payture_inpay.default_options.operations
for global setting or payture_inpay.terminals.<TerminalName>.operations
for terminal level setting.
Logging
You can configure payture_inpay.logging
with logger service ID to be passed to all inner services of bundle.
Also you can configure generic Guzzle logging middleware.
Configuration reference
payture_inpay: terminals: # Prototype name: name: ~ # Terminal authentication data auth: # Required # Terminal operation URL url: ~ # Required, Example: https://sandbox.payture.com/ # Terminal identification Key key: ~ # Required, Example: Merchant # Terminal identification Password password: ~ # Required, Example: Secret operations: Init: # Operation timeout, seconds timeout: null # Connection timeout for operation, seconds connect_timeout: null Charge: # Operation timeout, seconds timeout: null # Connection timeout for operation, seconds connect_timeout: null Unblock: # Operation timeout, seconds timeout: null # Connection timeout for operation, seconds connect_timeout: null Refund: # Operation timeout, seconds timeout: null # Connection timeout for operation, seconds connect_timeout: null PayStatus: # Operation timeout, seconds timeout: null # Connection timeout for operation, seconds connect_timeout: null default_options: operations: Init: # Operation timeout, seconds timeout: 30 # Required # Connection timeout for operation, seconds connect_timeout: 5 # Required Charge: # Operation timeout, seconds timeout: 30 # Required # Connection timeout for operation, seconds connect_timeout: 5 # Required Unblock: # Operation timeout, seconds timeout: 30 # Required # Connection timeout for operation, seconds connect_timeout: 5 # Required Refund: # Operation timeout, seconds timeout: 30 # Required # Connection timeout for operation, seconds connect_timeout: 5 # Required PayStatus: # Operation timeout, seconds timeout: 30 # Required # Connection timeout for operation, seconds connect_timeout: 5 # Required # Guzzle client service ID. New one will be created if none provided guzzle_client: null # Logger service ID. No logger by default logger: null