1. Go to this page and download the library: Download palantirnet/rottentomatoes library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
palantirnet / rottentomatoes example snippets
use Guzzle\RottenTomatoes\RottenTomatoesClient;
use PalantirNet\RottenTomatoes\Connection;
$apikey = 'the API key from Rotten Tomatoes';
// You could use an alternate URI if you wanted to use a mock server or proxy
// or something like that.
$base_uri = 'http://api.rottentomatoes.com/api/public/v1.0.json';
$connection = new Connection(new RottenTomatoesClient($base_uri, array('apikey' => $apikey)));