bluedogtraining / guzzle-eway
This package is abandoned and no longer maintained.
The author suggests using the eway/eway-rapid-php package instead.
A Guzzle client for interacting with the Eway Direct Transactions API
v3.0.0
2014-07-12 07:38 UTC
Requires
Requires (Dev)
This package is not auto-updated.
Last update: 2021-07-09 01:02:48 UTC
README
A PHP 5.3+ Guzzle client for interacting with the Eway Direct Transaction API.
Install
Via composer
{ "require": { "bluedogtraining/guzzle-eway": "3.*" } }
Usage
Create API client
$client = \Bdt\Eway\EwayClient::factory();
Send Payment
Command arguments are as defined in the Eway API,
except without the eway
prefix.
$response = $client->SendPayment([ 'customerID' => '87654321', 'totalAmount' => '10', 'cardHoldersName' => 'Foo Bar', 'cardNumber' => '4444333322221111', 'cardExpiryMonth' => '06', 'cardExpiryYear' => '20', 'CVN' => '123', ]); $response['trxnStatus']; // true $response['trxnError']['code']; // 10
Testing
$ phpunit