-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 981 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
{
"name": "pxgamer/trakt-to-yts",
"type": "library",
"description": "A CLI for downloading Trakt lists from YTS",
"license": "MIT",
"require": {
"php": "^8.1"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"illuminate/http": "^9.0",
"laravel-zero/framework": "^9.1.3",
"mockery/mockery": "^1.5",
"nunomaduro/termwind": "^1.14",
"pestphp/pest": "^1.21.3"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test:unit": "pest --colors=always",
"test": [
"@test:unit"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"bin": "builds/trakt-to-yts"
}