-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 835 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 835 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
{
"name": "aternos/renderchest",
"description": "PHP library for rendering icons for Minecraft items directly from Minecraft's assets",
"keywords": ["minecraft", "item", "render", "icon", "css"],
"readme": "README.md",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kurt Thiemann",
"email": "kurt@aternos.org"
}
],
"support": {
"source": "https://github.com/aternosorg/renderchest",
"issues": "https://github.com/aternosorg/renderchest/issues"
},
"require": {
"ext-imagick": "*",
"ext-json": "*",
"vanilla/garden-cli": "^3.1",
"php": ">=8.1",
"aternos/taskmaster": "^1.1.3"
},
"autoload": {
"psr-4": {
"Aternos\\Renderchest\\": "src/"
}
}
}