gocardless/enterprise

This package is abandoned and no longer maintained. No replacement package was suggested.

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.

v6.2.2 2021-06-03 07:31 UTC

This package is auto-updated.

Last update: 2023-09-02 11:07:07 UTC


README

We recommend that the official package from Gocardless is used: https://packagist.org/packages/gocardless/gocardless-pro

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