Download the PHP package duyplus/tmdbapi without Composer
On this page you can find all versions of the php package duyplus/tmdbapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download duyplus/tmdbapi
More information about duyplus/tmdbapi
Files in duyplus/tmdbapi
Package tmdbapi
Short Description PHP wrapper for The Movie Data Base API version 3
License MIT
Homepage https://github.com/duyplus/tmdbapi
Informations about the package tmdbapi
TMDBAPI
TMDB API v3 PHP Library - wrapper to API version 3 of themoviedb.org. With the TMDB API v3 PHP Library, you can easily access information about movies, actors, reviews, genres, and many other related data. The library supports basic HTTP requests and automatically handles JSON responses, enabling you to quickly and efficiently integrate TMDB functionalities into your PHP projects with flexibility.
Installation
You can install the TMDB API via Composer:
Requirements
- PHP 5.3.x or higher
- cURL
- TMDB API Key (get key from here)
Documentation
Changelog
Initialize the class
If you have a $conf array
If you have no $conf array it uses the default conf but you need to have an API Key
Movies
Search a Movie
returns an array of Movie Objects.
Get a Movie
You should take a look at the Movie class Documentation and see all the info you can get from a Movie Object.
returns a Movie Object.
TV Shows
Search a TV Show
returns an array of TVShow Objects.
Get a TVShow
You should take a look at the TVShow class Documentation and see all the info you can get from a TVShow Object.
returns a TVShow Object.
Get a TVShow's Season
You should take a look at the Season class Documentation and see all the info you can get from a Season Object.
returns a Season Object.
Get a TVShow's Episode
You should take a look at the Episode class Documentation and see all the info you can get from a Episode Object.
returns a Episode Object.
Persons
Search a Person
returns an array of Person Objects.
Get a Person
You should take a look at the Person class Documentation and see all the info you can get from a Person Object.
returns a Person Object.
Get Person's Roles
You should take a look at the Role class Documentation and see all the info you can get from a Role Object.
returns an array of MovieRole Objects.
returns an array of TVShowRole Objects.
Collections
Search a Collection
returns an array of Collection Objects.
Get a Collection
You should take a look at the Collection class Documentation and see all the info you can get from a Collection Object.
returns a Collection Object.
Companies
Search a Company
returns an array of Company Objects.
Get a Company
You should take a look at the Company class Documentation and see all the info you can get from a Company Object.
returns a Company Object.
Credits
@author Pixelead0 also on Github
@author Deso85 also on Github
Forked from a similar project by Burhan Ibrahimi
License
This project is licensed under the MIT License. See the LICENSE file for details.