2017 © Pedro Peláez
 

library php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

image

wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  • Wednesday, May 30, 2018
  • by wtfzdotnet
  • Repository
  • 20 Watchers
  • 224 Stars
  • 2,706 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 60 Forks
  • 7 Open issues
  • 63 Versions
  • 0 % Grown

The README.md

A PHP Wrapper for use with the TMDB API.

License Build Status Code Coverage PHP & HHVM, (*1)

Inspired by php-github-api, php-gitlab-api and the Symfony Community., (*2)

If you have any questions or feature requests, please visit the google+ community., (*3)

Stable

Latest Stable Version Latest Unstable Version Dependency Status Total Downloads, (*4)

Currently unit tests are run on travis, with the following versions:, (*5)

  • 5.6
  • 7.0
  • 7.1
  • HHVM (failures allowed)
  • nightly (failures allowed)

Features

Main features

  • An complete integration of all the TMDB API has to offer (accounts, movies, tv etc. if something is missing I haven't added the updates yet!).
  • Array implementation of the movie database (RAW)
  • Model implementation of the movie database (By making use of the repositories)
  • An ImageHelper class to help build image urls or html elements.

Other things worth mentioning

  • Retry subscriber enabled by default to handle any rate limit errors.
  • Caching subscriber enabled by default, based on max-age headers returned by TMDB, requires doctrine-cache.
  • Logging subscriber and is optional, requires monolog. Could prove useful during development.

Plug-ins

Installation

Install Composer, (*6)

$ curl -sS https://getcomposer.org/installer | php
$ sudo mv composer.phar /usr/local/bin/composer

You are not obliged to move the composer.phar file to your /usr/local/bin, it is however considered easy to have an global installation., (*7)

Add the following to your require block in composer.json config, (*8)

"php-tmdb/api": "~2.1"

If your new to composer and have no clue what I'm talking about, (*9)

Just create a file named composer.json in your document root:, (*10)

{
    "require": {
        "php-tmdb/api": "~2.1"
    }
}

Now let's install and pull in the dependencies!, (*11)

composer install

Include Composer's autoloader:, (*12)

require_once dirname(__DIR__).'/vendor/autoload.php';

To use the examples provided, copy the apikey.php.dist to apikey.php and change the settings., (*13)

Constructing the Client

First we always have to construct the client:, (*14)

$token  = new \Tmdb\ApiToken('your_tmdb_api_key_here');
$client = new \Tmdb\Client($token);

If you'd like to make unsecure requests (by default we use secure requests)., (*15)

$client = new \Tmdb\Client($token, ['secure' => false]);

Caching is enabled by default, and uses a slow filesystem handler, which you can either:, (*16)

  • Replace the path of the storage of, by supplying the option in the client:
$client = new \Tmdb\Client($token, [
    'cache' => [
        'path' => '/tmp/php-tmdb'
    ]
]);
  • Or replace the whole implementation with another CacheStorage of Doctrine:
use Doctrine\Common\Cache\ArrayCache;

$client = new \Tmdb\Client($token, [
        'cache' => [
            'handler' => new ArrayCache()
        ]
    ]
);

This will only keep cache in memory during the length of the request, see the documentation of Doctrine Cache for the available adapters., (*17)

Strongly against this, disabling cache:, (*18)

$client = new \Tmdb\Client($token, [
    'cache' => [
        'enabled' => false
    ]
]);

If you want to add some logging capabilities (requires monolog/monolog), defaulting to the filesystem;, (*19)

$client = new \Tmdb\Client($token, [
    'log' => [
        'enabled' => true,
        'path'    => '/var/www/php-tmdb-api.log'
    ]
]);

However during development you might like some console magic like ChromePHP or FirePHP;, (*20)

$client = new \Tmdb\Client($token, [
    'log' => [
        'enabled' => true,
        'handler' => new \Monolog\Handler\ChromePHPHandler()
    ]
]);

General API Usage

If your looking for a simple array entry point the API namespace is the place to be., (*21)

$movie = $client->getMoviesApi()->getMovie(550);

If you want to provide any other query arguments., (*22)

$movie = $client->getMoviesApi()->getMovie(550, array('language' => 'en'));

Model Usage

However the library can also be used in an object oriented manner, which I reckon is the preferred way of doing things., (*23)

Instead of calling upon the client, you pass the client onto one of the many repositories and do then some work on it., (*24)

$repository = new \Tmdb\Repository\MovieRepository($client);
$movie      = $repository->load(87421);

echo $movie->getTitle();

The repositories also contain the other API methods that are available through the API namespace., (*25)

$repository = new \Tmdb\Repository\MovieRepository($client);
$topRated = $repository->getTopRated(array('page' => 3));
// or
$popular = $repository->getPopular();

Some other useful hints

Event Dispatching

Since 2.0 requests are handled by the EventDispatcher, which gives you before and after hooks, the before hook allows an event to stop propagation for the request event, meaning you are able to stop the main request from happening, you will have to set a Response object in that event though., (*26)

See the files for TmdbEvents and RequestSubscriber respectively., (*27)

Image Helper

An ImageHelper class is provided to take care of the images, which does require the configuration to be loaded:, (*28)

$configRepository = new \Tmdb\Repository\ConfigurationRepository($client);
$config = $configRepository->load();

$imageHelper = new \Tmdb\Helper\ImageHelper($config);

echo $imageHelper->getHtml($image, 'w154', 154, 80);

Plug-ins

At the moment there are only two useful plug-ins that are not enabled by default, and you might want to use these:, (*29)

$plugin = new \Tmdb\HttpClient\Plugin\LanguageFilterPlugin('nl');

Tries to fetch everything it can in Dutch., (*30)

$plugin = new \Tmdb\HttpClient\Plugin\AdultFilterPlugin(true);

We like naughty results, if configured this way, provide false to filter these out., (*31)

Collection Filtering

We also provide some easy methods to filter any collection, you should note however you can always implement your own filter easily by using Closures:, (*32)

foreach($movie->getImages()->filter(
        function($key, $value){
            if ($value instanceof \Tmdb\Model\Image\PosterImage) { return true; }
        }
    ) as $image) {

    // do something with all poster images
}

These basic filters however are already covered in the Images collection object:, (*33)

$backdrop = $movie
    ->getImages()
    ->filterBackdrops()
;

And there are more Collections which provide filters, but you will find those out along the way., (*34)

The GenericCollection and the ResultCollection

The GenericCollection holds any collection of objects (e.g. an collection of movies)., (*35)

The ResultCollection is an extension of the GenericCollection, and inherits the response parameters (page, total_pages, total_results) from an result set, this can be used to create paginators., (*36)

Help & Donate

If you use this in a project whether personal or business, I'd like to know where it is being used, so please drop me an e-mail! :-), (*37)

If this project saved you a bunch of work, or you just simply appreciate my efforts, please consider donating a beer (or two ;))!, (*38)

, (*39)

The Versions

30/05 2018

2.1.x-dev

2.1.9999999.9999999-dev https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

30/05 2018

v2.1.15

2.1.15.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

03/05 2018

2.1.15

2.1.15.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

27/02 2018

dev-master

9999999-dev https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

20/01 2018

v2.1.14

2.1.14.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

20/01 2018

v2.1.13

2.1.13.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

20/01 2018

2.0.x-dev

2.0.9999999.9999999-dev https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

20/01 2018

dev-feature/php7.2

dev-feature/php7.2 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

20/01 2018

v2.1.12

2.1.12.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

19/11 2017

v2.1.11

2.1.11.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

09/09 2017

v2.1.10

2.1.10.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

09/09 2017

v2.0.19

2.0.19.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

02/06 2017

v2.0.18

2.0.18.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

02/06 2017

v2.1.9

2.1.9.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

01/03 2017

2.1.8

2.1.8.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

27/01 2017

2.1.7

2.1.7.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

27/01 2017

dev-feature/protocolless-image-helper-urls

dev-feature/protocolless-image-helper-urls https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

12/11 2016

2.1.6

2.1.6.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

08/11 2016

2.1.5

2.1.5.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

27/10 2016

2.1.4

2.1.4.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

17/10 2016

2.1.3

2.1.3.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

16/10 2016

2.1.2

2.1.2.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

16/10 2016

2.1.0

2.1.0.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

16/10 2016

dev-2.1-beta

dev-2.1-beta https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

07/04 2016

v2.0.17

2.0.17.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

06/04 2016

v2.0.16

2.0.16.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

11/03 2016

v2.0.15

2.0.15.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

09/03 2016

v2.0.14

2.0.14.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

11/10 2015

v2.0.13

2.0.13.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

17/09 2015

v2.0.12

2.0.12.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

12/09 2015

v2.0.11

2.0.11.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

22/07 2015

v2.0.10

2.0.10.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

11/07 2015

v2.0.9

2.0.9.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

24/06 2015

dev-test/travis

dev-test/travis https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

21/06 2015

v2.0.8

2.0.8.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

21/06 2015

dev-issue/85-tv-alternative-titles

dev-issue/85-tv-alternative-titles https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

21/06 2015

dev-issue/87-unrecognized-media-type-episode

dev-issue/87-unrecognized-media-type-episode https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

21/06 2015

dev-feature/427-retry-after

dev-feature/427-retry-after https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

04/04 2015

v2.0.7

2.0.7.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

26/03 2015

v2.0.6

2.0.6.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

26/03 2015

v2.0.5

2.0.5.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

25/03 2015

v2.0.4

2.0.4.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

10/03 2015

v2.0.3

2.0.3.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

10/03 2015

dev-pr-76

dev-pr-76 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

01/02 2015

v2.0.2

2.0.2.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

26/01 2015

v2.0.1

2.0.1.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

25/01 2015

v2.0.0

2.0.0.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

31/07 2014

v1.4.2

1.4.2.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

31/07 2014

1.x-dev

1.9999999.9999999.9999999-dev https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

13/07 2014

v1.4.1

1.4.1.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

13/07 2014

v1.4.0

1.4.0.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

09/07 2014

v1.3.0

1.3.0.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

10/04 2014

v1.2.0

1.2.0.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

05/04 2014

v1.1.1

1.1.1.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

05/04 2014

v1.1.0

1.1.0.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

27/03 2014

dev-feature-backoff-429

dev-feature-backoff-429 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

25/03 2014

v1.0.0

1.0.0.0 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

15/03 2014

v1.0.0-BETA1

1.0.0.0-beta1 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

08/03 2014

v1.0.0-ALPHA5

1.0.0.0-alpha5 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

03/03 2014

v1.0.0-ALPHA4

1.0.0.0-alpha4 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

02/03 2014

v1.0.0-ALPHA3

1.0.0.0-alpha3 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

28/02 2014

v1.0.0-ALPHA2

1.0.0.0-alpha2 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show

27/02 2014

v1.0.0-ALPHA1

1.0.0.0-alpha1 https://github.com/wtfzdotnet/php-tmdb-api

PHP wrapper for TMDB (TheMovieDatabase) API v3. Supports two types of approaches, one modelled with repositories, models and factories. And the other by simple array access to RAW data from The Movie Database.

  Sources   Download

MIT

The Requires

 

The Development Requires

api php wrapper tv movie tvdb tmdb tv show