-
Notifications
You must be signed in to change notification settings - Fork 60
/
composer.json
44 lines (44 loc) · 1.29 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
{
"name": "php-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": "markredeman@gmail.com"
}
],
"license": "MIT",
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0 || ~4.0",
"php-tmdb/api": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.5",
"symfony/event-dispatcher": "~2.8|~3.0",
"illuminate/events": "~5.0",
"doctrine/cache": ">=1.3.0",
"monolog/monolog": ">=1.7.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"
}
}
}
}