-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
composer.json
50 lines (50 loc) · 1.14 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
{
"name": "czechpmdevs/multiworld",
"description": "An advanced world management PocketMine plugin with custom world generators.",
"minimum-stability": "dev",
"license": "Apache-2.0",
"require": {
"php": "^8.0",
"ext-yaml": "*",
"ext-json": "*",
"czechpmdevs/libpmform": "*",
"muqsit/vanillagenerator": "*",
"muqsit/simplepackethandler": "*",
"cortexpe/commando": "*",
"pocketmine/pocketmine-mp": "^5.0.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.18"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/CzechPMDevs/libpmform"
},
{
"type": "vcs",
"url": "https://github.com/CzechPMDevs/VanillaGenerator"
},
{
"type": "vcs",
"url": "https://github.com/ACM-PocketMine-MP/Commando/"
},
{
"type": "package",
"package": {
"name": "muqsit/simplepackethandler",
"version": "0.1.0",
"source": {
"url": "https://github.com/Muqsit/SimplePacketHandler",
"type": "git",
"reference": "master"
}
}
}
],
"autoload": {
"psr-4": {
"": ["src"]
}
}
}