An up-to-date, simple wrapper to the TheyWorkForYouAPI written in PHP.
It can be easily installed using Composer with the following command:
composer require odinshat/twfy-php
After that you can use it in you project by simply including it with:
use OdinsHat\Twfy
Then here's a basic example:
$twfyapi = new TWFYAPI('DpPSWnGj7XPRGePtfMGWvGqQ');
$mps = $twfyapi->query('getMPs', array('output' => 'xml', 'party' => 'labour'));
header('Content-type: application/xml');
echo $mps;