This is a basic API wrapper for Plex. See the documentation for 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';
use jc21\PlexApi;
$client = new PlexApi('192.168.0.10');
$client->setAuth('username', 'password');
$result = $client->getOnDeck();
print_r($result);