Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 886 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 886 Bytes

Sick Beard API Client

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();