forked from SeaquestNet/trakt-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 970 Bytes
/
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
{
"name": "shaffe-fr/trakt",
"description": "Trakt API wrapper",
"authors": [
{
"name": "megawubs",
"email": "bwubs@me.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.4.7",
"illuminate/support": "~5.5",
"nesbot/carbon": "~1",
"guzzlehttp/guzzle": "5.*|6.*",
"league/oauth2-client": "~0.8",
"league/url": "^3.3"
},
"require-dev": {
"vlucas/phpdotenv": "^2.0",
"phpunit/phpunit": "4.4.*",
"mockery/mockery": "^0.9.4",
"symfony/console": "^2.7",
"league/flysystem": "^1.0",
"symfony/var-dumper": "v2.7.1",
"psr/log": "^1.0"
},
"autoload": {
"psr-0": {
"Wubs": "src/"
},
"classmap": [
"tests"
]
},
"bin": [
"bin/trakt"
],
"extra": {
"laravel": {
"providers": [
"Wubs\\Trakt\\Providers\\Laravel\\TraktApiServiceProvider"
],
"aliases": {
"Trakt": "Wubs\\Trakt\\Trakt"
}
}
}
}