-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
60 lines (60 loc) · 1.48 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
{
"name": "v17development/flarum-blog",
"description": "Adds a blog section to your forum",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "V17 Development",
"email": "[email protected]"
}
],
"homepage": "https://v17.dev/projects/flarum-blog",
"support": {
"forum": "https://discuss.flarum.org/d/33038",
"issues": "https://github.com/v17development/flarum-blog/issues",
"source": "https://github.com/v17development/flarum-blog",
"docs": "https://community.v17.dev/knowledgebase/category/flarum-blog"
},
"autoload": {
"psr-4": {
"V17Development\\FlarumBlog\\": "src/"
}
},
"require": {
"flarum/core": "^1.7.0",
"flarum/tags": "^1.0.0",
"flarum/lock": "^1.0.0",
"ext-json": "*"
},
"suggest": {
"v17development/flarum-seo": "Adds Flarum SEO and Social media tags",
"fof/upload": "Upload images for blog posts"
},
"conflict": {
"v17development/flarum-seo": "<=1.8"
},
"extra": {
"flarum-extension": {
"title": "Blog",
"category": "feature",
"icon": {
"name": "fas fa-blog",
"backgroundColor": "#2dc0e6",
"color": "#ffffff"
},
"optional-dependencies": [
"flarum/sticky",
"fof/discussion-language",
"askvortsov/flarum-rich-text",
"v17development/flarum-seo"
]
},
"branch-alias": {
"dev-master": "0.6.x-dev"
}
},
"require-dev": {
"v17development/flarum-seo": "*"
}
}