Symfony bundle to integrate Buckaroo functionality.
The bundle provides a client that can interact with Buckaroo. See the following example for a SEPA direct debit transaction:
$request = new SimpleSepaDirectDebitTransactionRequest();
$request->setAmount(Money::EUR(1000));
$request->setCustomerAccountName($bankAccountHolder);
$request->setCustomerIban($iban);
$request->setInvoiceNumber($invoiceNumber);
$request->setMandate(new Mandate($reference, new \DateTime());
$this->buckaroo->send($request);If you discover any security related issues, please email dev@treehouse.nl instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.