mirror of
https://github.com/pmmp/BedrockProtocol.git
synced 2025-02-23 17:26:14 +00:00
Updates the requirements on [phpstan/phpstan](https://github.com/phpstan/phpstan) to permit the latest version. - [Release notes](https://github.com/phpstan/phpstan/releases) - [Changelog](https://github.com/phpstan/phpstan/blob/master/CHANGELOG.md) - [Commits](https://github.com/phpstan/phpstan/compare/1.4.1...1.4.2) --- updated-dependencies: - dependency-name: phpstan/phpstan dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
983 B
JSON
36 lines
983 B
JSON
{
|
|
"name": "pocketmine/bedrock-protocol",
|
|
"description": "An implementation of the Minecraft: Bedrock Edition protocol in PHP",
|
|
"type": "library",
|
|
"require": {
|
|
"php": "^8.0",
|
|
"ext-json": "*",
|
|
"netresearch/jsonmapper": "^4.0",
|
|
"pocketmine/binaryutils": "^0.2.0",
|
|
"pocketmine/color": "^0.2.0",
|
|
"pocketmine/math": "^0.3.0 || ^0.4.0",
|
|
"pocketmine/nbt": "^0.3.0",
|
|
"ramsey/uuid": "^4.1"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "1.4.2",
|
|
"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
|
|
}
|
|
}
|