PHPackages                             soneritics/buckaroojson - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. soneritics/buckaroojson

ActiveLibrary[API Development](/categories/api)

soneritics/buckaroojson
=======================

Buckaroo PHP implementation

v1.6(9mo ago)013.7k—0%1MITPHP

Since Jul 5Pushed 9mo ago1 watchersCompare

[ Source](https://github.com/Soneritics/BuckarooJSON)[ Packagist](https://packagist.org/packages/soneritics/buckaroojson)[ Docs](https://github.com/Soneritics/BuckarooJSON)[ RSS](/packages/soneritics-buckaroojson/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (4)Versions (10)Used By (0)

[![Build Status](https://camo.githubusercontent.com/682657f4cfb03d10ebf8b82501727da02c39d0b5847955dda498d38612b0229f/68747470733a2f2f6170692e7472617669732d63692e6f72672f536f6e657269746963732f4275636b61726f6f4a534f4e2e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/Soneritics/BuckarooJSON)[![Coverage Status](https://camo.githubusercontent.com/4e7f40806abdc9059ee5344388035a9849975294aaeb3715e604405d76052e57/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f536f6e657269746963732f4275636b61726f6f4a534f4e2f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/Soneritics/BuckarooJSON?branch=master)[![Latest Stable](https://camo.githubusercontent.com/f329e59803967c0b02d9d4b46dc2d0631e6a4fc7425f5bb15f118a0bad58c64f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f736f6e657269746963732f6275636b61726f6f6a736f6e2e7376673f7374796c653d666c61742d737175617265266c6162656c3d737461626c65)](https://packagist.org/packages/soneritics/buckaroojson?branch=master)[![License](https://camo.githubusercontent.com/505fe3a551fc6e64816f64cee81471b04e7ef943170e4f994c249982b3fd4290/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e2e737667)](https://camo.githubusercontent.com/505fe3a551fc6e64816f64cee81471b04e7ef943170e4f994c249982b3fd4290/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e2e737667)

Buckaroo
========

[](#buckaroo)

> Buckaroo payment provider implementation classes Connect with Buckaroo through their easy to use JSON API.

Important!
----------

[](#important)

If you have the problem where floats are serialized the wrong way, add this line to your code:

```
ini_set( 'serialize_precision', -1 );
```

you have this problem when you get the error: An error occurred while processing the transaction: Total amount of articles does not match the transaction amount (S996)

Payment methods
---------------

[](#payment-methods)

Currently, the following payment methods are supported

- iDeal
- AfterPay (DigiAccept)
- Bancontact
- KBC
- Credit cards:
    - Mastercard
    - Visa
    - American Express
- Debit cards:
    - VPay
    - Maestro
    - Visa Electron
    - Carte Bleue
    - Carte Bancaire
    - Dankort

Example
-------

[](#example)

Some example code has been added in the *Examples* folder. A sneak peek below :-)

```
$transactionKey = ''; // Your transaction key here

$authentication = new Authentication($secretKey, $websiteKey);
$buckaroo = new Buckaroo($authentication, true);
$transactionStatusRequest = $buckaroo->getTransactionStatusRequest($transactionKey)->request();

if ($transactionStatusRequest['Status']['Code']['Code'] == PaymentStatus::SUCCESS) {
    // Order is paid
}
```

Multiple payment methods
------------------------

[](#multiple-payment-methods)

When you want the customer to make a choice for the payment method, but you do not want it on your own site, that's also possible. You can use the MultiServiceTransactionRequest for that. This is something that's commonly used for creditcard transactions.

```
$ccTransactionRequest = $buckaroo->getMultiServiceTransactionRequest()
    ->addService(new CreditcardMastercard)
    ->addService(new CreditcardVisa)
    ->addService(new CreditcardAmericanExpress)
    ->setAmountDebit(12.5)
    ->setInvoice('inv-123')
    ->request();

// Redirect the user to: echo $ccTransactionRequest['RequiredAction']['RedirectURL']
```

Change list
-----------

[](#change-list)

VersionBreakingChangesNotes1.\*NoImplement Refund, Authorize, Capture, etc.**On request only!**2.0YesMap the responses to proper objects

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance58

Moderate activity, may be stable

Popularity24

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 96.9% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~324 days

Recently: every ~646 days

Total

9

Last Release

280d ago

Major Versions

v0.10 → v1.02018-07-13

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/3717850?v=4)[Jordi Jolink](/maintainers/soneritics)[@Soneritics](https://github.com/Soneritics)

---

Top Contributors

[![Soneritics](https://avatars.githubusercontent.com/u/3717850?v=4)](https://github.com/Soneritics "Soneritics (63 commits)")[![gijsjager](https://avatars.githubusercontent.com/u/12530269?v=4)](https://github.com/gijsjager "gijsjager (2 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/soneritics-buckaroojson/health.svg)

```
[![Health](https://phpackages.com/badges/soneritics-buckaroojson/health.svg)](https://phpackages.com/packages/soneritics-buckaroojson)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)[mapado/rest-client-sdk

Rest Client SDK for hydra API

1125.9k2](/packages/mapado-rest-client-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
