0
0
mirror of https://github.com/pmmp/BedrockProtocol.git synced 2025-02-23 06:56:19 +00:00
BedrockProtocol/composer.json
dependabot[bot] acb324f922 Update phpunit/phpunit requirement from ^9.5 to ^9.5 || ^10.0 (#191)
Updates the requirements on [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) to permit the latest version.
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/10.3.5/ChangeLog-10.3.md)
- [Commits](https://github.com/sebastianbergmann/phpunit/compare/9.5.0...10.3.5)

---
updated-dependencies:
- dependency-name: phpunit/phpunit
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-11-15 17:31:19 +00:00

39 lines
1.1 KiB
JSON

{
"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.39",
"phpstan/phpstan-phpunit": "^1.0.0",
"phpstan/phpstan-strict-rules": "^1.0.0",
"phpunit/phpunit": "^9.5 || ^10.0"
},
"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"
}
}