-
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.61 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.61 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": "clansuite/serverquery",
"description": "A PHP library to query game and voice servers for their status and player information (e.g. CSGO, Quake3, TeamSpeak).",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.2"
},
"require-dev": {
"phpunit/phpunit": "^12.4",
"friendsofphp/php-cs-fixer": "^3.88.2",
"rector/rector": "^2.2.3",
"vimeo/psalm": "^6.13.1"
},
"autoload": {
"psr-4": {
"Clansuite\\ServerQuery\\": "src/CSQuery/",
"Clansuite\\Capture\\": "src/Capture/",
"Clansuite\\Capture\\CLI\\": "src/CLI/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"homepage": "https://github.com/Clansuite/ServerQuery",
"support": {
"issues": "https://github.com/Clansuite/ServerQuery/issues",
"source": "https://github.com/Clansuite/ServerQuery"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jakoch"
}
],
"authors": [
{
"name": "Jens A. Koch",
"email": "jakoch@web.de"
}
],
"keywords": [
"clansuite",
"server query",
"game server",
"voice server",
"query",
"serverstatus",
"php game server query",
"php voice server query",
"half-life server query",
"quake3 server query",
"steam server query",
"teamspeak server query",
"discord server query",
"game server info",
"server status api",
"multiplayer server query"
]
}