-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 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
{
"name": "the-turk/flarum-mathren",
"description": "TeX math rendering for your forum.",
"keywords": [
"flarum",
"mathren",
"mathematics",
"expressions",
"tex",
"latex",
"katex"
],
"type": "flarum-extension",
"license": "MIT",
"authors": [{
"name": "Hasan Özbey",
"email": "[email protected]",
"homepage": "https://github.com/the-turk"
}],
"support": {
"issues": "https://github.com/the-turk/flarum-mathren/issues",
"source": "https://github.com/the-turk/flarum-mathren",
"docs": "https://katex.org/docs/options.html"
},
"require": {
"flarum/core": ">=1.2.0"
},
"autoload": {
"psr-4": {
"TheTurk\\MathRen\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "MathRen",
"icon": {
"name": "fas fa-square-root-alt",
"backgroundColor": "#b72a2a",
"color": "#fff"
}
}
}
}