-
Notifications
You must be signed in to change notification settings - Fork 98
/
Copy pathcomposer.json
51 lines (51 loc) · 1.06 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
{
"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": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mysqli": "*",
"d11wtq/boris": "^1.0",
"endroid/qr-code": "^3.9",
"maennchen/zipstream-php": "^2.1",
"orpheusnet/bencode-torrent": "^1.1.1",
"orpheusnet/logchecker": "^0.11.0",
"robmorgan/phinx": "^0.12.4",
"robthree/twofactorauth": "^1.7",
"twig/twig": "^2.12",
"vinkla/hashids": "^8.1",
"whichbrowser/parser": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.49",
"phpunit/phpunit": "^9.4",
"squizlabs/php_codesniffer": "^3.5"
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse"
}
}