Skip to content

Releases: svennis94/Buckaroo-PHP-JSON

Added 2 functions to retrieve the error messages

10 Dec 10:35
Compare
Choose a tag to compare

@Freeaqingme Added 2 functions to retrieve the error messages from the Buckaroo response.

Update for 5.6.3

05 Nov 19:54
Compare
Choose a tag to compare

@Maxdw has changed the Data class to \stdClass. It was throwing a namespace conflict. See #2 for changes.

Support to retrieve multiple transactions

13 Jul 09:56
Compare
Choose a tag to compare

Added support to retrieve multiple transactions at once

$transactionStatus = new TransactionStatus('website-key', 'secret-key');
        
$transactionStatus->addTransactionByKey('transaction-key');
$transactionStatus->addTransactionByInvoice('invoice');
        
$transactionResponses = $transactionStatus->get();

Fixed some CodeClimate issues

13 Jul 08:34
Compare
Choose a tag to compare

I fixed a couple of CodeClimate issues

Add methods to add headers to GuzzleHTTP Client

13 Jul 08:27
Compare
Choose a tag to compare

@marcopetersamazing created a pull request for a method to add a header to the GuzzleHTTP Client. I've added a couple more functions and written a test to finish the pull request.

New

  • $transaction->addClientHeader('name', 'value');
  • $transaction->hasClientHeader('name');
  • $transaction->getClientHeader('name');

Added getRequiredActionName

17 Mar 08:58
Compare
Choose a tag to compare

I've added the getRequiredActionName function to the TransactionResponse class to get the required action name.

First release - MVP

15 Mar 22:23
Compare
Choose a tag to compare

This is the MVP release of the php Buckaroo JSON package. In this package are currently only 2 methods:

  1. Start a new transaction
  2. Get a transaction status