-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
43 lines (43 loc) · 967 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
{
"name": "javierleon9966/blocklagfix",
"description": "Fixes block lagging",
"type": "project",
"minimum-stability": "dev",
"license": "MIT",
"require": {
"pocketmine/pocketmine-mp": "^5.0.0",
"muqsit/simplepackethandler": "0.1.4"
},
"require-dev": {
"phpstan/phpstan": "^1.2.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/extension-installer": "^1.0"
},
"repositories": [
{
"type": "package",
"package": {
"name": "muqsit/simplepackethandler",
"version": "0.1.4",
"autoload": {
"classmap": ["src/"]
},
"source": {
"url": "https://github.com/javierleon9966/simplepackethandler",
"type": "git",
"reference": "patch-1"
}
}
}
],
"autoload": {
"psr-0": {
"JavierLeon9966\\BlockLagFix\\": "src"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}