gocardless / gocardless-pro-php
GoCardless Pro PHP Client Library
Installs: 36 150
Dependents: 0
Suggesters: 0
Security: 0
Stars: 97
Watchers: 91
Forks: 40
Open Issues: 29
Requires
- php: >=8.1
- ext-curl: *
- ext-json: *
- ext-mbstring: *
- guzzlehttp/guzzle: ^7.4
Requires (Dev)
- php-coveralls/php-coveralls: ^2.4
- phpunit/phpunit: ^9.5
- squizlabs/php_codesniffer: ^3.6
- dev-master
- 6.0.0
- 5.11.0
- 5.10.0
- 5.9.0
- 5.8.0
- 5.7.0
- 5.6.0
- 5.5.1
- 5.5.0
- 5.4.0
- 5.3.0
- 5.2.0
- 5.1.0-beta
- 5.0.0-beta
- 4.28.0
- 4.26.0
- 4.25.0
- 4.24.0
- 4.23.0
- 4.22.0
- 4.21.0
- 4.20.0
- 4.19.0
- 4.18.0
- 4.17.0
- 4.16.0
- 4.15.0
- 4.14.0
- 4.12.0
- 4.11.0
- 4.10.0
- 4.9.0
- 4.8.0
- 4.7.0
- 4.6.1
- 4.5.0
- 4.4.0
- 4.3.0
- 4.2.1
- 4.2.0
- 4.1.1
- 4.1.0
- 4.0.0
- 3.6.2
- 3.6.1
- 3.6.0
- 3.5.2
- 3.5.0
- 3.4.0
- 3.3.1
- 3.3.0
- 3.2.1
- 3.2.0
- 3.1.0
- 3.0.1
- 3.0.0
- 2.1.0
- 2.0.0
- 1.7.0
- 1.6.0
- 1.5.3
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.0
- 1.3.0
- 1.2.0
- 1.1.0
- 1.0.0
- 0.11.0
- 0.10.1
- 0.9.4
- 0.9.3
- 0.9.2
- 0.9.1
- 0.9.0
- 0.3.1
- 0.3.0
- 0.2.0
- 0.1.1
- 0.1.0
- dev-template-changes
- dev-dependabot/composer/guzzlehttp/psr7-2.5.0
- dev-CON-1638-maintenance
- dev-CON-1437
- dev-convert-gocardless-gocardless-pro-php-to-actions-20221108-154553
- dev-dependabot/composer/guzzlehttp/guzzle-7.4.5
This package is auto-updated.
Last update: 2024-11-05 10:05:00 UTC
README
A PHP client for interacting with the GoCardless Pro API.
- "Getting started" guide with copy and paste PHP code samples
- API Reference
- Composer Package
- Changelog
Installation
The recommended way to install gocardless-pro
is using
Composer.
# Install Composer curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install the latest stable version of gocardless-pro
.
php composer.phar require gocardless/gocardless-pro
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
Initialising A Client
Create a GoCardlessPro\Client
instance, providing your access token and the environment
you want to use. We strongly advise storing your access token as an environment variable,
rather than directly in your code. You can easily load the environment variables from a
.env
file by using something like phpdotenv,
though keep it out of version control!
$access_token = getenv('GC_ACCESS_TOKEN'); $client = new \GoCardlessPro\Client([ 'access_token' => $access_token, 'environment' => \GoCardlessPro\Environment::SANDBOX ]);
You can create an access_token
from the "Developers" tab in your GoCardless dashboard.
The environment can either be \GoCardlessPro\Environment::SANDBOX
or
\GoCardlessPro\Environment::LIVE
, depending on whether you want to
use the sandbox or live API.
For full documentation, see our API docs.
GET requests
You can make a request to get a list of resources using the list
method.
$client->customers()->list();
Note: This README will use customers throughout but each of the resources in the API is available in this library.
If you need to pass any options, the last (or only, in the absence of URL params)
argument to list()
is an array of URL parameters:
$customers = $client->customers()->list(['params' => ['limit' => 400]]);
A call to list()
returns an instance of ListResponse
. You can use its records
attribute to iterate through the results.
echo count($customers->records); foreach ($customers->records as $resource) { echo $resource->given_name; }
In the case where a URL parameter is needed, the method signature will contain the required arguments:
$customer = $client->customers()->get($customer_id); echo $customer->given_name;
As with list, the last argument can be an options array, with any URL parameters given:
$client->customers()->get($customer_id, ['params' => ['some_flag' => true]]);
Both individual resource and ListResponse instances have an api_response
attribute,
which lets you access the following properties of the request:
status
headers
body
$api_response = $client->customers()->get($customer_id)->api_response; echo $api_response->status_code;
POST/PUT Requests
For POST and PUT requests, you need to provide a body for your request by passing it in as the first argument.
$client->customers()->create([ 'params' => ['given_name' => 'Pete', 'family_name' => 'Hamilton'] ]);
As with GET requests, if any parameters are required, these come first:
$client->customers()->update($customer_id, [ 'params' => ['family_name' => 'Smith'] ]);
The GoCardless API includes idempotency keys. The library will automatically inject these into your request when you create a resource, preventing it from getting duplicated if something goes wrong with the API (e.g. networking issues or a timeout).
You can also specify your own idempotency key - you could, for example, use IDs of records in your database, protecting yourself not only from network or API issues, but also mistakes on your side which could lead to double-creation:
$client->customers()->create([ 'params' => ['given_name' => 'Pete', 'family_name' => 'Hamilton'] 'headers' => ['Idempotency-Key' => 'ABC123'] ]);
If the library hits an idempotency key conflict (that is, you try to create a resource with an idempotency key you've already used), it will automatically load and return the already-existing resource.
Handling Failures
When the API returns an error, the library will return a corresponding subclass of
ApiException
, one of:
InvalidApiUsageException
InvalidStateException
ValidationFailedException
These types of error are covered in the API documentation.
If the error is an HTTP transport layer error (e.g. timeouts or issues within
GoCardless's infrastructure), requests will automatically be retried by the library up to
3 times, with a 500ms delay between attempts, before a ApiConnectionException
is
raised.
If the library can't parse the response from GoCardless, it will throw a
MalformedResponseException
.
try { $client->customer()->create([ 'params' => ['invalid_name' => 'Pete'] ]); } catch (\GoCardlessPro\Core\Exception\ApiException $e) { // Api request failed / record couldn't be created. } catch (\GoCardlessPro\Core\Exception\MalformedResponseException $e) { // Unexpected non-JSON response. } catch (\GoCardlessPro\Core\Exception\ApiConnectionException $e) { // Network error. }
Properties of the exception can be accessed with the following methods:
$e->getType();
$e->getCode();
$e->getErrors();
$e->getDocumentationUrl();
$e->getMessage();
$e->getRequestId();
$e->getApiResponse();
Handling webhooks
GoCardless supports webhooks, allowing you to receive real-time notifications when things happen in your account, so you can take automatic actions in response, for example:
- When a customer cancels their mandate with the bank, suspend their club membership
- When a payment fails due to lack of funds, mark their invoice as unpaid
- When a customer's subscription generates a new payment, log it in their "past payments" list
The client allows you to validate that a webhook you receive is genuinely from GoCardless, and to parse it into GoCardlessPro\Resources\Event
objects which are easy to work with:
<?php // When you create a webhook endpoint, you can specify a secret. When GoCardless sends // you a webhook, it will sign the body using that secret. Since only you and GoCardless // know the secret, you can check the signature and ensure that the webhook is truly // from GoCardless. // // We recommend storing your webhook endpoint secret in an environment variable // for security, but you could include it as a string directly in your code $webhook_endpoint_secret = getenv('GOCARDLESS_WEBHOOK_ENDPOINT_SECRET'); $request_body = file_get_contents('php://input'); $headers = getallheaders(); $signature_header = $headers['Webhook-Signature']; try { $events = GoCardlessPro\Webhook::parse($request_body, $signature_header, $webhook_endpoint_secret); foreach ($events as $event) { // You can access each event in the webhook. echo $event->id; } header('HTTP/1.1 200 OK'); } catch (GoCardlessPro\Core\Exception\InvalidSignatureException) { // The webhook doesn't appear to be genuinely from GoCardless, as the signature // included in the `Webhook-Signature` header doesn't match the one computed with // your webhook endpoint secret and the body. header('HTTP/1.1 498 Invalid Token'); }
For more details on working with webhooks, see our "Getting started" guide.
Supporting PHP >= 8.1
This client library only supports PHP >= 8.1 Earlier releases of PHP are now considered end of life and may be exposed to security vulnerabilities.
Contributing
This client is auto-generated from Crank, a toolchain that we hope to soon open source. Issues should for now be reported on this repository.
Please do not modify the source code yourself, your changes will be overridden!