forked from DariusIII/tmdb-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.43 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "dariusiii/tmdb-laravel",
"description": "Laravel Package for TMDB ( The Movie Database ) API. Provides easy access to the wtfzdotnet/php-tmdb-api library.",
"keywords": ["Laravel", "tmdb", "api", "php", "wrapper", "movie", "tv", "tv show", "tvdb"],
"authors": [
{
"name": "Mark Redeman",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=8.0",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
"php-tmdb/api": "^4.0",
"nyholm/psr7": "^1.3",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0",
"symfony/event-dispatcher": "^6.0",
"psr/event-dispatcher": "^1.0",
"illuminate/events": "^8.0|^9.0|^10.0",
"doctrine/cache": "^1.8",
"monolog/monolog": "^3.0"
},
"suggest": {
"doctrine/cache": "Required if you want to make use of caching features.",
"monolog/monolog": "Required if you want to make use of logging features."
},
"autoload": {
"psr-4": {
"Tmdb\\Laravel\\": "src/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"Tmdb\\Laravel\\TmdbServiceProvider"
],
"aliases": {
"Tmdb": "Tmdb\\Laravel\\Facades\\Tmdb"
}
}
}
}