-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
44 lines (44 loc) · 917 Bytes
/
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
{
"name": "craft/core",
"description": "A PHP library for all things Minecraft: Java Edition.",
"keywords": [
"minecraft-api",
"minecraft-library",
"nbt-library",
"minecraft-protocol",
"minecraft-java-edition",
"minecraft-java",
"minecraft",
"mcje"
],
"homepage": "https://github.com/Phpcraft/core",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Phpcraft\\": "src/"
}
},
"require": {
"php": "^7.1",
"ext-curl": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"ext-sockets": "*",
"ext-SPL": "*",
"ext-zlib": "*",
"hell-sh/asyncore": "^2.0",
"hell-sh/enum": "^1.1",
"hell-sh/hotswapp": "^1.1",
"hell-sh/uuid": "^1.3",
"phpseclib/mcrypt_compat": "^1.0"
},
"require-dev": {
"hell-sh/nose": "^1.1"
},
"suggest": {
"ext-mcrypt": "Install the mcrypt extension to speed up \"online mode\" connections."
}
}