forked from pmmp/BedrockProtocol
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 1.08 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
{
"name": "pocketmine/bedrock-protocol",
"description": "An implementation of the Minecraft: Bedrock Edition protocol in PHP",
"type": "library",
"require": {
"php": "^8.1",
"ext-json": "*",
"netresearch/jsonmapper": "^4.0",
"pocketmine/binaryutils": "^0.2.0",
"pocketmine/color": "^0.2.0 || ^0.3.0",
"pocketmine/math": "^0.3.0 || ^0.4.0 || ^1.0.0",
"pocketmine/nbt": "^1.0.0",
"ramsey/uuid": "^4.1"
},
"require-dev": {
"phpstan/phpstan": "1.10.33",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"pocketmine\\network\\mcpe\\protocol\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"pocketmine\\network\\mcpe\\protocol\\": "tests/phpunit/"
}
},
"license": "LGPL-3.0",
"config": {
"sort-packages": true
},
"scripts": {
"update-create-methods": "@php tools/generate-create-static-methods.php"
}
}