-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 648 Bytes
/
Copy pathcomposer.json
File metadata and controls
32 lines (32 loc) · 648 Bytes
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
{
"name": "eustasy/phoenix",
"description": "A lightweight BitTorrent tracker.",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.2",
"ext-filter": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-session": "*",
"ext-xml": "*"
},
"require-dev": {
"geoip2/geoip2": "^3.3",
"phpunit/phpunit": "^11.0 || ^12.0"
},
"suggest": {
"geoip2/geoip2": "Enables minified geo enrichment (country/continent) of stat-tracking events; see the stats_geo settings."
},
"autoload-dev": {
"psr-4": {
"Phoenix\\Tests\\": "tests/phoenix/"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}