jc21/plex-api

PHP Api for Plex

2.1 2023-06-07 22:56 UTC

This package is auto-updated.

Last update: 2024-03-08 00:39:19 UTC


README

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.

Installing via Composer

# 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';

Using

use jc21\PlexApi;

$client = new PlexApi('192.168.0.10');
$client->setAuth('username', 'password');
$result = $client->getOnDeck();
print_r($result);