forked from Frago9876543210/MCBE-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.29 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
{
"name": "Frago9876543210/MCPE-Proxy",
"description": "Proxy for a Minecraft BE. It allows you to intercept packets and send packets.",
"type": "project",
"homepage": "https://github.com/Frago9876543210/MCPE-Proxy",
"license": "GPL-3.0",
"require": {
"php": ">=7.2.0RC3",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-hash": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-pcre": "*",
"ext-phar": "*",
"ext-pthreads": ">=3.1.7dev",
"ext-reflection": "*",
"ext-sockets": "*",
"ext-spl": "*",
"ext-yaml": ">=2.0.0",
"ext-zip": "*",
"ext-zlib": ">=1.2.11",
"pocketmine/pocketmine-mp": "dev-master",
"pocketmine/raklib": "dev-master",
"pocketmine/pocketmine-spl": "^0.2.0",
"pocketmine/pocketmine-binaryutils": "dev-master",
"pocketmine/pocketmine-nbt": "dev-master"
},
"autoload": {
"psr-4": {
"": [
"src"
]
}
},
"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/PocketMine-SPL"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/PocketMine-BinaryUtils"
},
{
"type": "vcs",
"url": "https://github.com/pmmp/PocketMine-NBT"
}
]
}