Files
ops-bencode-torrent/composer.json
2023-10-12 23:59:53 +00:00

33 lines
786 B
JSON

{
"type": "library",
"name": "orpheusnet/bencode-torrent",
"description": "PHP Library for decoding and encoding BitTorrent BEncoded data, built for Gazelle",
"license": "Unlicense",
"authors": [
{
"name": "Orpheus",
"email": "noreply@orpheus.network"
}
],
"autoload": {
"psr-4": {
"OrpheusNET\\BencodeTorrent\\": "src/"
}
},
"require": {
"php": ">=7.2",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "3.*",
"phpstan/phpstan": "^0.12.48"
},
"scripts": {
"test": "phpunit",
"lint": "phpcs",
"lint:fix": "phpcbf",
"stan": "phpstan analyse"
}
}