gopaywin/api-client

GoPayWin API PHP Client Bindings

Maintainers

Package info

github.com/GoPayWin/api-client-php

Homepage

pkg:composer/gopaywin/api-client

Statistics

Installs: 7

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

dev-master 2016-07-22 13:54 UTC

This package is not auto-updated.

Last update: 2026-03-12 07:53:24 UTC


README

@awsforphp on Twitter Latest Development Version

Installation

The GoPayWin API Client can be installed via Composer by requiring the gopaywin/api-client package in your project's composer.json.

{
    "require": {
        "gopaywin/api-client": "0.2.*@dev"
    }
}

Then run a composer update

php composer.phar update

Configuration

$configuration = new \GoPayWin\ApiClient\Configuration();

$configuration->load_from_array(array(
  'endpoint' => \GoPayWin\ApiClient\Configuration::SANDBOX_ENDPOINT,
  'private_key' => '...',
  'publishable_key' => '...'
));

You can create custom configuration loaders by extending the \GoPayWin\ApiClient\Configuration class.

Usage

$request = new \GoPayWin\ApiClient\Request('/orders', $configuration);
$response = $request->get();

Links