forked from megawubs/trakt-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·52 lines (52 loc) · 1.01 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
48
49
50
51
52
{
"name": "nntmux/trakt",
"license": "GPL-3.0-only",
"description": "Trakt API wrapper",
"authors": [
{
"name": "megawubs",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"illuminate/support": "~5.6",
"nesbot/carbon": "~1.2",
"guzzlehttp/guzzle": "~6.3.0",
"league/oauth2-client": "~2.3.0",
"league/uri": "^5.2.0"
},
"require-dev": {
"vlucas/phpdotenv": "^2.4.0",
"mockery/mockery": "^1.0",
"symfony/console": "^4.0.4",
"league/flysystem": "^1.0.9",
"symfony/var-dumper": "v4.0.4",
"psr/log": "^1.0.2",
"phpunit/phpunit": "^7.0.1"
},
"autoload": {
"psr-0": {
"NNTmux": "src/"
},
"classmap": [
"tests"
]
},
"bin": [
"bin/trakt"
],
"config": {
"bin-dir": "scripts"
},
"extra": {
"laravel": {
"providers": [
"NNTmux\\Trakt\\Providers\\Laravel\\TraktApiServiceProvider"
],
"aliases": {
"TraktApi": "NNTmux\\Trakt\\Facades\\TraktApi"
}
}
}
}