-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 872 Bytes
/
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
{
"name": "askvortsov/flarum-markdown-tables",
"description": "Markdown tables for flarum.",
"keywords": [
"flarum"
],
"type": "flarum-extension",
"license": "MIT",
"support": {
"issues": "https://github.com/askvortsov1/flarum-markdown-tables/issues",
"source": "https://github.com/askvortsov1/flarum-markdown-tables",
"forum": "https://discuss.flarum.org/d/26456-markdown-tables"
},
"require": {
"flarum/core": "^1.0.0"
},
"authors": [
{
"name": "Alexander Skvortsov",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
" \\MarkdownTables\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Markdown Tables",
"category": "feature",
"icon": {
"name": "fas fa-table",
"backgroundColor": "#6932D1",
"color": "#ffffff"
}
}
}
}