-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.82 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.82 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "teamspeakphp/web-query",
"description": "PHP TeamSpeak 3 WebQuery client",
"keywords": ["php", "teamspeak", "sdk", "ts3", "api", "webquery", "client"],
"homepage": "https://github.com/teamspeakphp/web-query",
"license": "MIT",
"authors": [
{
"name": "Smith",
"email": "smitt14ua@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"php-http/discovery": "^1.20",
"psr/http-client": "^1.0.3"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.9.2",
"laravel/pint": "^1.20",
"mockery/mockery": "^1.6.12",
"pestphp/pest": "^3.7.4",
"pestphp/pest-plugin-type-coverage": "^3.2.3",
"phpstan/phpstan": "^2.1.2",
"rector/rector": "^2.0.7",
"symfony/var-dumper": "^7.2"
},
"autoload": {
"psr-4": {
"TeamSpeak\\WebQuery\\": "src/"
},
"files": [
"src/TeamSpeak.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"refactor": "rector",
"lint": "pint -v",
"test:refactor": "rector --dry-run",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:type-coverage": "pest --type-coverage --min=100",
"test:unit": "pest --colors=always --coverage --min=100",
"test": [
"@test:refactor",
"@test:lint",
"@test:types",
"@test:type-coverage",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": false
}
},
"minimum-stability": "stable",
"prefer-stable": true
}