itelmenko/ecommpay-php5-sdk

There is no license information available for the latest version (v0.10) of this package.

Ecommpay SDK

v0.10 2018-11-19 12:37 UTC

This package is auto-updated.

Last update: 2024-04-18 19:16:00 UTC


README

Forked from ecommpay/paymentpage-sdk

Build Status Test Coverage Maintainability

This is a set of libraries in the PHP language to ease integration of your service with the EcommPay Payment Page.

Please note that for correct SDK operating you must have at least PHP 5.3.10

Payment flow

Payment flow

Installation

Install with composer

composer require ecommpay/paymentpage-sdk

Get URL for payment

$gate = new ecommpay\Gate('secret');
$payment = new ecommpay\Payment(100);
$payment->setPaymentAmount(1000)->setPaymentCurrency('RUB');
$url = $gate->getPurchasePaymentPageUrl($payment);

$url here is the signed URL.

Handle callback from Ecommpay

You'll need to autoload this code in order to handle notifications:

$gate = new ecommpay\Gate('secret');
$callback = $gate->handleCallback($data);

$data is the JSON data received from payment system;

$callback is the Callback object describing properties received from payment system; $callback implements these methods:

  1. Callback::getPaymentStatus(); Get payment status.
  2. Callback::getPayment(); Get all payment data.
  3. Callback::getPaymentId(); Get payment ID in your system.

TODO

  • Payment Page opening
  • Notifications handling
  • Direct Gate requests
  • PHPDoc