naythukhant / tmdb
A laravel package that helps you to retrieve data form https://api.themoviedb.org/ easily.
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
pkg:composer/naythukhant/tmdb
This package is auto-updated.
Last update: 2025-09-22 22:35:54 UTC
README
A laravel package that helps you to retrieve data form https://api.themoviedb.org/ easily.
Getting Start
- Install the package to your laravel project.
composer require naythukhant/tmdb
-
Add TMDB_TOKEN which can be accessed at https://api.themoviedb.org/ to your .env
-
Add NayThuKhant\TMDB\TMDBServiceProvider::class to the providers array of config/app.php
/*
* Package Service Providers...
*/
NayThuKhant\TMDB\TMDBServiceProvider::class,
- If you want to publish the configs, then run the following command.
php artisan vendor:publish --tag=tmdb
#👌HAVE FUN👌