redpanda/php-imdb

There is no license information available for the latest version (dev-master) of this package.

A PHP 5.3 library for scraping IMDb.

dev-master 2012-10-25 09:33 UTC

This package is not auto-updated.

Last update: 2024-04-13 10:33:23 UTC


README

A PHP 5.3 library for scraping IMDb, strongly inspired by imdb.

Build Status

Installation

Install vendors

wget http://getcomposer.org/composer.phar
php composer.phar install

Update vendors

php composer.phar update

Usage

Get Movie

<?php
$i = new IMDb\Movie("0095016");
$i->getTitle();

Search movie

<?php
$s = new IMDb\Search("Star Trek");
foreach ($s->getMovies() as $movie) {
    echo $movie->getTitle().PHP_EOL;
}

Command line

Get movie

bin/imdb show 0095016

Search movie

bin/imdb search "Star Trek"

Tests

Run the tests (requires PHPUnit >= 3.5)

phpunit

License

MIT, see LICENSE