mirror of
https://github.com/OPSnet/bencode-torrent.git
synced 2026-01-16 20:04:48 -05:00
33 lines
786 B
JSON
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"
|
|
}
|
|
}
|