Simple PHP SDK for Publitio API. This SDK works OK with older versions of PHP (5.4+)
Just include publitio_api.php in your project and initiate it
require_once('publitio_api.php');
// Please update xxxx with your key and yyyy with your secret
$publitio_api = new PublitioAPI('xxxx', 'yyyy');See examples.php file for full list of available classes, methods and options
Sample call to List Files
// list files
$response = $publitio_api->call("/files/list", "GET", array('offset' => '0', 'limit' => '10'));
//echo entire response
print_r($response);