A very simple example for working with the Kindrid API in PHP
Clone this repository and install with composer
git clone https://github.com/kindrid/kindrid_php.git
cd kindrid_php
composer install
Create a new instance of the client with your API key and secret
$k = new \Kindrid\Kindrid($key, $secret);
Get all donations
$donations = $k->donations();
Get all donors
$donors = $k->donors();
Get all disbursals
$disbursals = $k->disbursals();