This project is not published on packagist till now.
composer require bconnect/mailingwork
$client = \bconnect\MailingWork\Client::getClient('user', 'pass');
try {
$listId = $client->api('list')->createList("Api created list");
$recipient = $client->api('recipient')->getRecipientById(5);
} catch (\bconnect\MailingWork\ApiException $ex) {
print "Error ocurred";
}