gocardless/enterprise

A php library for interfacing with the GoCardless Pro (formerly GoCardless Enterprise) REST API. Please note this library is not for use with their standard API.


Keywords
gocardless, direct debit, Lendable, GoCardless Pro, GoCardless Enterprise, api, php
License
MIT

Documentation

Build Status

Unofficial integration with GoCardless Enterprise API

Client library for the GoCardless Enterprise API

You will need to create a config.php with the configuration settings (a dist file is provided for reference):

<?php

return [
    'baseUrl' => 'https://api-sandbox.gocardless.com/',
    'gocardlessVersion' => '2015-07-06',
    'webhook_secret' => XXXXXXXXXXXXXXXXXXXXXX,
    'creditorId' => XXXXXXXXXXXXXX,
    'token' => XXXXXXXXXXXXXXXXXXXXXXXXXXX,
];

After adding the configuration, run the unit tests:

$ php vendor/bin/phpunit