jleagle/sick-beard-api-client

There is no license information available for the latest version (0.4.0) of this package.

A wrapper class for the Sick Beard API.

0.4.0 2015-11-28 13:02 UTC

This package is auto-updated.

Last update: 2024-03-09 12:28:49 UTC


README

Code Quality (scrutinizer) Latest Stable Version

An API wrapper class for the Sick Beard API

Usage

Add the package to your composer.json:

{
  "require": {
    "jleagle/sick-beard-api-client": "*"
  }
}

Download the package

$ php composer.phar update jleagle/sick-beard-api-client

Enable the package:

$sb = new \Jleagle\SickBeard\SickBeard(
  $url, // The URL to your Sick Beard installation
  $apiKey, // Your Sick Beard API key
);

Make an API call:

$shows = $sb->shows();