gopaywin / api-client
GoPayWin API PHP Client Bindings
dev-master
2016-07-22 13:54 UTC
Requires
- php: >=5.3
This package is not auto-updated.
Last update: 2025-01-30 02:46:44 UTC
README
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();