gopaywin/api-client

GoPayWin API PHP Client Bindings

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

This package is not auto-updated.

Last update: 2024-04-10 22:46:44 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