forked from BigBrotherTeam/BigBrother
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
55 lines (55 loc) · 1.18 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
{
"name": "bigbrotherteam/bigbrother",
"description": "Allows the connection of Minecraft: PC clients to PocketMine-MP servers",
"license": "LGPL-3.0",
"authors": [
{
"name": "hmy2001",
"email": "[email protected]",
"role": "Lead Developer"
},
{
"name": "eternalharvest",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "SuperMaXAleX",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "caspervanneck",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "DrewD3V",
"email": "[email protected]",
"role": "Developer"
}
],
"scripts": {
"build": [
"@composer install --no-dev -o",
"@composer reindex",
"@php scripts/build"
],
"reindex": [
"@composer install --no-dev -o",
"@php scripts/reindex"
]
},
"require": {
"php": ">=7.2.0",
"ext-pthreads": "*",
"ext-json": "*",
"ext-openssl": "*",
"ext-zlib": "*",
"ext-sockets": "*",
"phpseclib/phpseclib": "2.0.17"
},
"require-dev": {
"pocketmine/pocketmine-mp": "^3.0"
}
}