Skip to content

GoPayWin/api-client-php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GoPayWin API Bindings for PHP

@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

Releases

No releases published

Packages

No packages published

Languages