This is a basic API wrapper for Plex. See the documentationfor functionality.
This doesn't use the Plex.tv API apart from signing in.
XML data returned is interpreted into arrays.
#Install Composer
curl -sS https://getcomposer.org/installer|php
Next, run the Composer command to install the latest stable version:
composer.phar require jc21/plex-api
After installing, you need to require Composer's autoloader:
require'vendor/autoload.php';
usejc21\PlexApi;
$client=newPlexApi('192.168.0.10');
$client->setAuth('username','password');
$result=$client->getOnDeck();
print_r($result);