Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 416 Bytes

README.md

File metadata and controls

33 lines (21 loc) · 416 Bytes

SignedPay API

This library provides basic API options of SignedPay payment gateway.

Installation

With Composer

$ composer require signedpay/api
{
    "require": {
        "signedpay/api": "~1.0"
    }
}

Usage

<?php

use Signedpay\API\Api;

$api = new Api('YourMerchantId', 'YourPrivateKey');

$response = $api->charge(['SomePaymentAttributes from API reference']);