jleagle / sick-beard-api-client
A wrapper class for the Sick Beard API.
Installs: 60
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/jleagle/sick-beard-api-client
Requires
- php: >=5.4.0
- jleagle/curl-wrapper: ~0.1
- packaged/helpers: ~1.1
README
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();