forked from torrentpier/torrentpier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
94 lines (94 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "torrentpier/torrentpier",
"description": "TorrentPier. Bull-powered BitTorrent tracker engine",
"type": "project",
"keywords": [
"bittorrent",
"forum",
"torrent",
"tracker"
],
"homepage": "https://torrentpier.com/",
"license": "MIT",
"authors": [
{
"name": "Exile",
"email": "[email protected]",
"homepage": "https://github.com/Exileum",
"role": "Developer"
},
{
"name": "Diolektor",
"homepage": "https://github.com/VasyOk",
"role": "Developer"
},
{
"name": "PheRum",
"homepage": "https://github.com/PheRum",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/torrentpier/torrentpier/issues",
"forum": "https://torrentpier.com/",
"docs": "https://docs.torrentpier.com/"
},
"require": {
"php": ">=7.2.5",
"bugsnag/bugsnag": "3.21.0",
"filp/whoops": "2.7.2",
"gigablah/sphinxphp": "2.0.8",
"google/recaptcha": "1.2.4",
"longman/ip-tools": "1.2.1",
"monolog/monolog": "2.0.2",
"pimple/pimple": "3.3.0",
"rych/bencode": "1.0.0",
"samdark/sitemap": "2.2.1",
"swiftmailer/swiftmailer": "6.2.3",
"symfony/dotenv": "5.0.8",
"symfony/http-foundation": "5.0.8",
"symfony/var-dumper": "5.0.8",
"twig/twig": "3.0.3"
},
"require-dev": {
"codacy/coverage": "1.4.3",
"phpunit/phpunit": "8.5.4",
"roave/security-advisories": "dev-master",
"php-coveralls/php-coveralls" : "2.2.0",
"sebastian/phpcpd": "4.1.0",
"scrutinizer/ocular": "1.7.0",
"squizlabs/php_codesniffer": "3.5.5",
"vimeo/psalm": "3.11.2"
},
"autoload": {
"psr-4": {
"TorrentPier\\": "src/"
},
"files": ["src/functions.php"]
},
"minimum-stability": "stable",
"prefer-stable": true,
"scripts": {
"test": [
"composer test:lint",
"composer test:unit",
"composer test:cpd"
],
"test:lint": [
"vendor/bin/phpcs --colors --report-full --standard=PSR2 src tests"
],
"test:unit": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-text"
],
"test:unit:html": [
"vendor/bin/phpunit --configuration phpunit.xml --coverage-html=internal_data/report"
],
"test:cpd": [
"vendor/bin/phpcpd --exclude=vendor --exclude=internal_data ."
],
"test:psalm": [
"vendor/bin/psalm"
]
}
}