-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.5 KB
/
Copy pathcomposer.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "t0xicvybez/gamequery",
"description": "A dependency-free PHP library for querying multiplayer game server status (players, map, ping, rules) over UDP/TCP, with concurrent multi-server polling.",
"type": "library",
"license": "AGPL-3.0-or-later",
"keywords": [
"game-server",
"query",
"a2s",
"source",
"steam",
"minecraft",
"gamedig",
"server-status",
"udp",
"gameserver"
],
"homepage": "https://query.arkenbot.app",
"authors": [
{
"name": "t0xicVybez",
"homepage": "https://github.com/t0xicVybez"
}
],
"support": {
"issues": "https://github.com/t0xicVybez/GameQuery/issues",
"source": "https://github.com/t0xicVybez/GameQuery"
},
"require": {
"php": ">=8.1"
},
"autoload": {
"psr-4": {
"GameQuery\\": "src/"
}
},
"bin": [
"bin/gamequery"
],
"scripts": {
"test": "php tests/smoke_test.php",
"fuzz": "php tests/fuzz_test.php",
"analyse": "phpstan analyse",
"cs": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix",
"docs": "phpDocumentor --config phpdoc.dist.xml",
"check": [
"@cs",
"@analyse",
"@test"
]
},
"minimum-stability": "stable",
"require-dev": {
"phpstan/phpstan": "^2.2",
"friendsofphp/php-cs-fixer": "^3.95"
}
}