macklus / yii2-themdb
The Movie DB API Client for yii2
Installs: 83
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- guzzlehttp/guzzle: ^6.1
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-09 19:45:34 UTC
README
The Movie DB API Client for yii2
Features
- Implements most of The Movie DB API methods
- Respect API limits, and wait if you are near to overpass API limit
- Simple usage
- Simple download of related images
- Log info messages using Yii::info for you to know when sleep due to API limits
Installation
The preferred way to install this extension is through composer.
Either run
composer require --prefer-dist macklus/yii2-themdb "*"
or add
"macklus/yii2-themdb": "*"
to the require section of your composer.json
file.
Usage
Once the extension is installed, simply use it in your code by :
use macklus\themdb\Tmdbapi; class SiteController extends Controller { public function actionTest() { $tmdb = new Tmdbapi(); $tmdb->api_key = '__INSERT_HERE_YOUR_API_KEY__'; if ($tmdb->getTvSeason(46952, 3, ['language' => 'es'])) { print_R($tmdb->data); } else { echo 'error'; } // Find something by his imdb_id $tmdb->findByExternal('imdb_id', 'tt0816692', ['language' => 'es']); } }```