-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 1.35 KB
/
composer.json
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nxtlvlsoftware/minecraft-world-converter",
"description": "An mcregion to anvil minecraft world format converter.",
"type": "project",
"license": "Unlicense",
"authors": [
{
"name": "Jack Noordhuis",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"laravel-zero/framework": "^6.0",
"pocketmine/pocketmine-mp": "3.9.6"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"repositories": [
{
"type": "vcs",
"name": "pocketmine/pocketmine-mp",
"url": "https://github.com/pmmp/PocketMine-MP"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/RakLib"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/SPL"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/BinaryUtils"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/NBT"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/Math"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/Snooze"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/Log"
}
],
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"scripts": {
"post-create-project-cmd": [
"@php application app:rename"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": [
"convert"
]
}