2017 © Pedro Peláez
 

library quickpay-php-client

PHP-SDK to communicate with the payment provider QuickPay

image

quickpay/quickpay-php-client

PHP-SDK to communicate with the payment provider QuickPay

  • Thursday, September 14, 2017
  • by lsolesen
  • Repository
  • 14 Watchers
  • 17 Stars
  • 50,699 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 13 Forks
  • 2 Open issues
  • 5 Versions
  • 11 % Grown

The README.md

quickpay-php-client

quickpay-php-client is a official client for QuickPay API. The QuickPay API enables you to accept payments in a secure and reliable manner. This package currently support QuickPay v10 api., (*1)

Installation

Composer

Simply add a dependency on quickpay/quickpay-php-client to your project's composer.json file if you use Composer to manage the dependencies of your project. Here is a minimal example of a composer.json file that just defines a dependency on newest stable version of QuickPay:, (*2)

{
    "require": {
        "quickpay/quickpay-php-client": "2.0.*"
    }
}

Manually upload

If you cannot use composer and all the goodness the autoloader in composer gives you, you can upload /QuickPay/ to your web space. However, then you need to manage the autoloading of the classes yourself., (*3)

Usage

Before doing anything you should register yourself with QuickPay and get access credentials. If you haven't please click here to apply., (*4)

Create a new client

First you should create a client instance that is anonymous or authorized with api_key or login credentials provided by QuickPay., (*5)

To initialise an anonymous client:, (*6)


To initialise a client with QuickPay Api Key:, (*7)


Or you can provide login credentials like:, (*8)


API Calls

You can afterwards call any method described in QuickPay api with corresponding http method and endpoint. These methods are supported currently: get, post, put, patch and delete., (*9)

// Get all payments
$payments = $client->request->get('/payments');

// Get specific payment
$payments = $client->request->get('/payments/{id}');

// Create payment
$form = array(
    'order_id' => $order_id,
    'currency' => $currency,
    ...
);
$payments = $client->request->post('/payments', $form);
$status = $payments->httpStatus();
if ($status == 201) {
    // Successful created
}

Handling the response

Getting the HTTP status code:, (*10)

$response = $client->request->get('/payments');
$status = $response->httpStatus();

if ($status == 200) {
    // Successful request
}

The returned response object supports 3 different ways of returning the response body, asRaw(), asObject, asArray()., (*11)

// Get the HTTP status code, headers and raw response body.
list($status_code, $headers, $response_body) = $client->request->get('/payments')->asRaw();

// Get the response body as an object
$response_body = $client->request->get('/payments')->asObject();

// Get the response body as an array
$response_body = $client->request->get('/payments')->asArray();

// Example usage
$payments = $client->request->get('/payments')->asArray();

foreach($payments as $payment) {
    //...
}

Setting timeouts

Set timeout and get notified on timeouts:, (*12)

QuickPayAPI::$timeout = 30;
QuickPayAPI::$onTimeout ??= function () {
    event(new PaymentGatewayTimeout($this));

    throw new TimeoutException("No response from Quickpay within " . QuickPayAPI::$timeout . " seconds");
};

You can read more about api responses at http://learn.quickpay.net/tech-talk/api/., (*13)

Tests

Use composer to create an autoloader:, (*14)

$ composer install
$ phpunit

The Versions

14/09 2017

dev-master

9999999-dev https://github.com/QuickPay/quickpay-php-client

PHP-SDK to communicate with the payment provider QuickPay

  Sources   Download

MIT

The Requires

  • php >=5.3.3
  • ext-curl *

 

The Development Requires

14/09 2017

1.0.1

1.0.1.0 https://github.com/QuickPay/quickpay-php-client

PHP-SDK to communicate with the payment provider QuickPay

  Sources   Download

MIT

The Requires

  • php >=5.3.3
  • ext-curl *

 

The Development Requires

23/07 2017

dev-basket

dev-basket https://github.com/QuickPay/quickpay-php-client

PHP-SDK to communicate with the payment provider QuickPay

  Sources   Download

MIT

The Requires

  • php >=5.3.3
  • ext-curl *

 

The Development Requires

19/04 2016

1.0.0

1.0.0.0 https://github.com/QuickPay/quickpay-php-client

PHP-SDK to communicate with the payment provider QuickPay

  Sources   Download

MIT

The Requires

 

The Development Requires

15/04 2016

0.1.0

0.1.0.0 https://github.com/QuickPay/quickpay-php-client

PHP-SDK to communicate with the payment provider QuickPay

  Sources   Download

MIT

The Requires

 

The Development Requires