mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-21 08:17:34 +00:00
PHPStan failed on 7.4 after updating to 0.12.99, and I figured it was less hassle to just do this than fix the build. In any case, we stopped shipping 7.4 months ago, and warned at 3.22 release that 7.4 support would soon be dropped.
75 lines
2.1 KiB
JSON
75 lines
2.1 KiB
JSON
{
|
|
"name": "pocketmine/pocketmine-mp",
|
|
"description": "A server software for Minecraft: Bedrock Edition written in PHP",
|
|
"type": "project",
|
|
"homepage": "https://pmmp.io",
|
|
"license": "LGPL-3.0",
|
|
"require": {
|
|
"php": "^8.0",
|
|
"php-64bit": "*",
|
|
"ext-ctype": "*",
|
|
"ext-curl": "*",
|
|
"ext-date": "*",
|
|
"ext-hash": "*",
|
|
"ext-json": "*",
|
|
"ext-mbstring": "*",
|
|
"ext-openssl": "*",
|
|
"ext-pcre": "*",
|
|
"ext-phar": "*",
|
|
"ext-pthreads": "~3.2.0",
|
|
"ext-reflection": "*",
|
|
"ext-simplexml": "*",
|
|
"ext-sockets": "*",
|
|
"ext-spl": "*",
|
|
"ext-yaml": ">=2.0.0",
|
|
"ext-zip": "*",
|
|
"ext-zlib": ">=1.2.11",
|
|
"composer-runtime-api": "^2.0",
|
|
"adhocore/json-comment": "^1.1",
|
|
"pocketmine/binaryutils": "^0.1.9",
|
|
"pocketmine/callback-validator": "^1.0.2",
|
|
"pocketmine/classloader": "^0.1.0",
|
|
"pocketmine/log": "^0.2.0",
|
|
"pocketmine/log-pthreads": "^0.1.0",
|
|
"pocketmine/math": "^0.2.0",
|
|
"pocketmine/nbt": "^0.2.18",
|
|
"pocketmine/raklib": "^0.12.7",
|
|
"pocketmine/snooze": "^0.1.0",
|
|
"pocketmine/spl": "^0.4.0"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/phpstan": "0.12.99",
|
|
"phpstan/phpstan-phpunit": "^0.12.6",
|
|
"phpstan/phpstan-strict-rules": "^0.12.2",
|
|
"phpunit/phpunit": "^9.2"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": ["src"]
|
|
},
|
|
"files": [
|
|
"src/pocketmine/CoreConstants.php",
|
|
"src/pocketmine/GlobalConstants.php",
|
|
"src/pocketmine/VersionInfo.php"
|
|
]
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"pocketmine\\": "tests/phpunit/"
|
|
}
|
|
},
|
|
"config": {
|
|
"platform": {
|
|
"php": "8.0.0"
|
|
},
|
|
"sort-packages": true
|
|
},
|
|
"scripts": {
|
|
"make-devtools": "@php -dphar.readonly=0 tests/plugins/DevTools/src/DevTools/ConsoleScript.php --make tests/plugins/DevTools --out plugins/DevTools.phar",
|
|
"make-server": [
|
|
"@composer install --no-dev --classmap-authoritative --ignore-platform-reqs",
|
|
"@php -dphar.readonly=0 build/server-phar.php"
|
|
]
|
|
}
|
|
}
|