renat-magadiev / comgate-client
Comgate client wrapper
Installs: 18 025
Dependents: 1
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 11
Open Issues: 1
Requires
- php: >=7.0
- guzzlehttp/guzzle: ^6.3
Requires (Dev)
- phpunit/phpunit: 6.5.*
This package is not auto-updated.
Last update: 2024-11-20 10:04:30 UTC
README
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
- PHP 7.0 or higher
- guzzlehttp/guzzle
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