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
Requires
- php: >=5.3.2
- kriswallsmith/buzz: 0.7
- symfony/console: 2.1.*
- symfony/css-selector: 2.1.*
- symfony/dom-crawler: 2.1.*
This package is not auto-updated.
Last update: 2024-10-26 12:54:45 UTC
README
A PHP 5.3 library for scraping IMDb, strongly inspired by imdb.
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