-
-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 630 Bytes
/
Copy pathcomposer.json
File metadata and controls
44 lines (44 loc) · 630 Bytes
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
{
"name": "xpaw/php-minecraft-query",
"description": "PHP library to query Minecraft servers",
"license": "MIT",
"funding":
[
{
"type": "github",
"url": "https://github.com/sponsors/xPaw"
}
],
"keywords":
[
"minecraft"
],
"require":
{
"php": ">=8.1"
},
"require-dev":
{
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^10",
"vimeo/psalm": "^6"
},
"autoload":
{
"psr-4": { "xPaw\\": "src" }
},
"autoload-dev":
{
"psr-4": { "xPaw\\Tests\\": "tests" }
},
"archive":
{
"exclude":
[
"tests/",
"phpstan.neon",
"psalm.xml",
"phpunit.xml"
]
}
}