-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.91 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
{
"name": "tritanium-scripts/tbb",
"description": "Tritanium Bulletin Board",
"type": "project",
"keywords" : [
"bulletin", "board", "forum", "discussion"
],
"homepage": "http://www.tritanium-scripts.com/",
"license": "CC-BY-NC-SA-3.0",
"authors": [
{
"name": "Julian",
"email": "julian@tritanium-scripts.com",
"homepage": "http://www.julianbackes.de",
"role": "Founder"
},
{
"name": "Chris",
"email": "chris@tritanium-scripts.com",
"homepage": "https://www.chrissyx.com",
"role": "Developer"
}
],
"support": {
"email": "chris@tritanium-scripts.com",
"issues": "https://github.com/Tritanium-Scripts/tbb/issues",
"forum": "http://www.tritanium-scripts.com/community/",
"wiki": "https://github.com/Tritanium-Scripts/tbb/wiki",
"source": "https://github.com/Tritanium-Scripts/tbb"
},
"require": {
"php": ">=7.4",
"smarty/smarty": "5.3.*"
},
"require-dev": {
"oomphinc/composer-installers-extender": "2.*"
},
"suggest": {
"ext-curl": "Proper fetching of Steam achievements",
"ext-dom": "Loading of fetched Steam achievements",
"ext-intl": "International formatting of dates",
"ext-json": "Needed for PHP <8.0",
"ext-mbstring": "Multibyte string extension for proper Unicode usage"
},
"autoload": {
"classmap": ["modules/"],
"exclude-from-classmap": ["modules/PlugIns/**"]
},
"config": {
"allow-plugins": {
"composer/*": true,
"oomphinc/composer-installers-extender": true
}
},
"extra": {
"installer-paths": {
"languages/{$name}/": ["type:tritanium-scripts-tbb1lng"],
"templates/{$name}/": ["type:tritanium-scripts-tbb1tpl"]
}
}
}