-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 817 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 817 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
{
"name": "refaltor/easy-ui-builder",
"description": "PHP library for generating Minecraft Bedrock Edition JSON UI files using a fluent builder pattern",
"version": "2.0.0",
"type": "library",
"license": "MIT",
"keywords": [
"minecraft",
"bedrock",
"json-ui",
"ui-builder",
"resource-pack"
],
"authors": [
{
"name": "Refaltor77",
"role": "Developer"
}
],
"require": {
"php": ">=8.0"
},
"autoload": {
"psr-4": {
"refaltor\\ui\\": "src/refaltor/ui/"
}
},
"autoload-dev": {
"psr-4": {
"refaltor\\roots\\": "tests/"
}
},
"scripts": {
"generate": "php start.php"
},
"minimum-stability": "stable"
}