gocardless-pro-php icon indicating copy to clipboard operation
gocardless-pro-php copied to clipboard

GoCardless Pro PHP Client

Results 31 gocardless-pro-php issues
Sort by recently updated
recently updated
newest added

Context: using v4.20.0 in SANDBOX environment, installed through Composer. Using a snippet taken [directly from the docs](https://developer.gocardless.com/api-reference/#institutions-list-institutions) for listing Institutions as part of a Billing Request. ```php $client = new...

After updating phpstan to version 1.7.1 it now gives an error for this usage: ` Parameter #1 $params of method GoCardlessPro\Services\PaymentsService::create() expects string, array given.` I see that create method...

When there was a server error that caused GoCardless API requests to fail, the GC library was failing to handle the error correctly due to a mistake in the function...

I see there are a couple of issues closed in regards to creating or assigning a subscription to a plan via the API - Is this on a roadmap &...

Hi there, I'm getting a FATAL error with this library - seems to be happening the last few days - here's the error ... [Mon Aug 09 12:45:28.666424 2021] [php7:error] ...

Update the current_page_position property docblock for the Paginator class; this property should be an int.

Passing an array of statuses to the `mandates()->all()` method: ``` $paginator = $client->mandates()->all([ 'params' => [ 'status' => ['pending_submission', 'submitted', 'active'] ] ]); ``` results in the following error: `One...

When installing this via composer the repo's composer.lock file is included. This usually contains outdated versions, some of which have published security vulnerabilities. While this file is not used in...

Without query filter GoCardlessPro\Core\Paginator works fine ``` $paginator = $client->events()->all(); foreach ($paginator as $record) { // do sth with record...works fine, // ie can iterate over all records and Paginator...