This bundle wraps the TheTVDB API client in a Symfony2 service, making it easy to with integrate the excellent TheTVDB.com database in your Symfony application.
TheTVDB.com is an open database with a lot of TV related data and graphics, added by its members. Like a niche Wikipedia with an API! You need to register for an API key before you can use the service.
TobiassjostenTheTVDBBundle was initially developed for use in Smartburk.se.
1. Download the bundle using Composer
Add TobiassjostenTheTVDBBundle in your composer.json
:
{
"require": {
"tobiassjosten/thetvdb-bundle": "1.0.*"
}
}
Now tell Composer to download the bundle by running the command:
$ php composer.phar update tobiassjosten/thetvdb-bundle
Composer will install the bundle to your project's vendor/tobiassjosten
directory.
Enable the bundle in the kernel (app/AppKernel.php
):
public function registerBundles()
{
$bundles = array(
// ...
new Tobiassjosten\TheTVDBBundle\TobiassjostenTheTVDBBundle(),
);
}
Add your API key to your application's parameters (app/config/parameters.yml
):
parameters:
# ...
thetvdb_api_key: ABCDEF123456
Use the dependency injection container to retrieve the service:
$api = $container->get('thetvdb');
See the library for how to use the actual API.
This bundle is under the MIT license. See the complete license in the bundle:
Resources/meta/LICENSE