renat-magadiev/comgate-client

Comgate client wrapper

1.0 2017-12-25 14:51 UTC

This package is not auto-updated.

Last update: 2024-04-14 02:13:33 UTC


README

Build Status Coverage Status

Comgate API client

Comgate API client wrapper

This package allow you to create payment using Comgate API and get redirect URL to your customers

Requirements

Installation

$ composer require renat-magadiev/comgate-client

Basic usage

use Comgate\Client;
use Comgate\Request\CreatePayment;

$client = new Client('merchant', true, 'secret');
$createPayment = new CreatePayment(1000, 'orderId', 'test@test.cz', 'Product name');

$createPaymentResponse = $client->send($createPayment);

$redirectUrl = $createPaymentResponse->getRedirectUrl();

CreatePayment class has the same props as described in Comgate documentation