-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 799 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 799 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
{
"name": "aternos/thanos",
"description": "Simple library to detect and remove unused chunks from a Minecraft world.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kurt Thiemann",
"email": "kurt@aternos.org"
}
],
"require": {
"php": ">=8.4",
"ext-zlib": "*",
"aternos/nbt": "^v1.9.0",
"aternos/taskmaster": "^1.1.3",
"aternos/io": "^2.0"
},
"suggest": {
"ext-lz4": "Support for LZ4 compressed chunks (Minecraft 1.20.5+)"
},
"autoload": {
"psr-4": {
"Aternos\\Thanos\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Aternos\\Thanos\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^12.4"
},
"scripts": {
"test": "phpunit --config phpunit.xml --testdox"
}
}