-
Notifications
You must be signed in to change notification settings - Fork 98
/
composer.json
55 lines (55 loc) · 1.4 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
{
"name": "orpheusnet/gazelle",
"description": "Web framework for private BitTorrent trackers using Ocelot",
"type": "project",
"license": "Unlicense",
"authors": [
{ "name": "What.CD" },
{ "name": "Apollo" },
{ "name": "Orpheus" }
],
"autoload": {
"psr-4": {
"Gazelle\\": "app/"
},
"classmap": ["classes/"]
},
"config": {
"sort-packages": true
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"d11wtq/boris": "^v1.0.10",
"endroid/qr-code": "^5.0",
"hashids/hashids": "^5.0",
"maennchen/zipstream-php": "^3.1",
"monero-integrations/monerophp": "dev-master#25d4c5838b35cbf1fb55170b831e895681a7410a",
"orpheusnet/bencode-torrent": "^1.3.0",
"orpheusnet/logchecker": "^0.13.0",
"protonlabs/bitcoin": "^1.0",
"robmorgan/phinx": "^0.12.13",
"robthree/twofactorauth": "^1.8.2",
"twig/twig": "^3.8",
"whichbrowser/parser": "^2.1.8"
},
"require-dev": {
"phpmd/phpmd": "@stable",
"phpstan/phpstan": "^1.10",
"phpunit/phpcov": "^10.0",
"phpunit/php-code-coverage": "^11",
"phpunit/phpunit": "^11",
"rector/rector": "^1.0",
"squizlabs/php_codesniffer": "^3.9"
},
"scripts": {
"phpstan": "phpstan analyse",
"test": [
"Composer\\Config::disableProcessTimeout",
"phpunit -c misc/phpunit.xml"
]
}
}