-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 2.01 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "arokettu/bencode",
"description": "BitTorrent's Bencode encoder/decoder",
"keywords": ["bittorrent", "torrent", "bencode", "serialize"],
"homepage": "https://sandfox.dev/php/bencode.html",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Anton Smirnov",
"role": "developer",
"homepage": "https://sandfox.me",
"email": "[email protected]"
}
],
"support": {
"issues": "https://gitlab.com/sandfox/bencode/-/issues",
"source": "https://gitlab.com/sandfox/bencode",
"docs": "https://bencode.readthedocs.io/",
"chat": "https://gitter.im/arokettu/community"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Arokettu\\Bencode\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arokettu\\Bencode\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"arokettu/is-resource": "^1.0"
},
"require-dev": {
"ext-bcmath": "*",
"ext-gmp": "*",
"ext-json": "*",
"brick/math": "*",
"mikey179/vfsstream": "^1.6.11",
"pear/math_biginteger": "^1.0",
"phpunit/phpunit": "^10.5.28",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^1.2024.07.05",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^5.2"
},
"suggest": {
"php-64bit": "Running 64 bit is recommended to prevent integer overflow",
"ext-gmp": "In case you need integers larger than your architecture supports",
"ext-bcmath": "In case you need integers larger than your architecture supports (PHP 8.4 or later)",
"brick/math": "In case you need integers larger than your architecture supports",
"pear/math_biginteger": "In case you need integers larger than your architecture supports"
}
}