-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
69 lines (69 loc) · 2.18 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
63
64
65
66
67
68
69
{
"name": "arokettu/torrent-file",
"description": "A class to work with torrent files",
"keywords": ["bittorrent", "torrent", "torrent-file"],
"homepage": "https://sandfox.dev/php/torrent-file.html",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Anton Smirnov",
"email": "sandfox@sandfox.me",
"homepage": "https://sandfox.me/",
"role": "developer"
}
],
"support": {
"source": "https://gitlab.com/sandfox/torrent-file",
"issues": "https://gitlab.com/sandfox/torrent-file/-/issues",
"docs": "https://torrent-file.readthedocs.io/",
"chat": "https://gitter.im/arokettu/community"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Arokettu\\Torrent\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Arokettu\\Torrent\\Tests\\Fields\\": "tests/fields",
"Arokettu\\Torrent\\Tests\\Files\\": "tests/files",
"Arokettu\\Torrent\\Tests\\Info\\": "tests/info",
"Arokettu\\Torrent\\Tests\\Other\\": "tests/other",
"Arokettu\\Torrent\\Tests\\Sign\\": "tests/sign",
"Arokettu\\Torrent\\Tests\\Types\\": "tests/types"
},
"files": [
"tests/functions.php"
]
},
"require": {
"php": "^8.1",
"ext-hash": "*",
"arokettu/bencode": "^2.8 | ^3.1 | ^4.0",
"nikic/iter": "^2.2",
"psr/event-dispatcher": "^1.0",
"symfony/filesystem": "^5.4 | ^6.0 | ^7.0",
"symfony/finder": "^5.4 | ^6.0 | ^7.0"
},
"require-dev": {
"ext-openssl": "*",
"jetbrains/phpstorm-attributes": "^1.0",
"league/event": "^3.0",
"phpunit/phpunit": "^10.5.3",
"psy/psysh": "*",
"sandfox.dev/code-standard": "^1.2024.07.05",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^5.2"
},
"suggest": {
"ext-openssl": "for signature logic"
}
}