-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
39 lines (39 loc) · 926 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
{
"name": "owenvoke/yts",
"type": "library",
"description": "A full wrapper for the YTS API.",
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^6.5|^7.2",
"illuminate/collections": "^8.40"
},
"require-dev": {
"pestphp/pest": "^1.1",
"phpstan/phpstan": "^0.12.85",
"symfony/var-dumper": "^5.1"
},
"autoload": {
"psr-4": {
"OwenVoke\\YTS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OwenVoke\\YTS\\Tests\\": "tests/"
}
},
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "pest --colors=always",
"test": [
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}