-
-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.02 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.02 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
{
"name": "xpaw/php-source-query-class",
"description": "PHP library to query and send RCON commands to servers based on \"Source Engine Query\" protocol",
"homepage": "https://github.com/xPaw/PHP-Source-Query",
"type": "library",
"license": "LGPL-2.1",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/xPaw"
}
],
"keywords":
[
"rcon",
"minecraft",
"csgo",
"counter-strike",
"team fortress",
"starbound",
"rust",
"ark",
"gmod"
],
"scripts":
{
"test":
[
"@phpunit",
"@phpstan"
],
"phpunit": "phpunit --configuration Tests/phpunit.xml --fail-on-warning",
"phpunit:coverage": "phpunit --configuration Tests/phpunit.xml --fail-on-warning --coverage-clover build/logs/clover.xml",
"phpstan": "phpstan"
},
"require":
{
"php": ">=8.3"
},
"require-dev":
{
"phpunit/phpunit": "^12.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0"
},
"autoload":
{
"psr-4":
{
"xPaw\\SourceQuery\\": "SourceQuery/"
}
}
}