Download the PHP package palantirnet/rottentomatoes without Composer
On this page you can find all versions of the php package palantirnet/rottentomatoes. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download palantirnet/rottentomatoes
More information about palantirnet/rottentomatoes
Files in palantirnet/rottentomatoes
Package rottentomatoes
Short Description Bridge API for talking to Rotten Tomatoes
License MIT
Informations about the package rottentomatoes
Rotten Tomatoes Bridge
This library is a simple API wrapper around the Rotten Tomatoes API. It is built on the Guzzle HTTP library.
Development on this package is closed.
Installing via Composer
The recommended way to install this library is through Composer.
-
Add
palantirnet/rottentomatoes
as a dependency in your project'scomposer.json
file:{ "require": { "palantirnet/rottentomatoes": "1.0" } }
-
Download and install Composer:
curl -s http://getcomposer.org/installer | php
-
Install your dependencies:
php composer.phar install
-
Require Composer's autoloader
Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process:
require 'vendor/autoload.php';
You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at getcomposer.org.
Using the library
To connect to Rotten Tomatoes, you need an API key issued by them. It is a simple pseudorandom alphanumeric string. You can register for one on the [Rotten Tomatoes Developer site][http://developer.rottentomatoes.com/]
Once you have the key, the rest is easy:
Congratulations, you now have a connection to Rotten Tomatoes! You can look up movies and reviews with the appropriate methods:
In either case, you get back a \PalantirNet\RottenTomatoes\Movie object.
Note: IMDB IDs often have leading zeros, so if you're providing a literal ID be careful that it doesn't get interpreted as an octal number. That is, don't do this:
Because PHP will interpret that as "1234" in base 8 (Octal). Instead, quote the ID:
Movies can be used to retrieve related Reviews, as well as related cast data. Those have their own objects. (See the inline documentation.)
The raw data of a movie (or review) can be retrieved as an array with the getData() method. There are also a small number of utility methods available. (PRs for more will be accepted!)