-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
63 lines (63 loc) · 1.52 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
62
63
{
"name": "v17development/flarum-seo",
"description": "Adds SEO tags for your Flarum forum",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "V17 Development",
"email": "info@v17.dev"
}
],
"homepage": "https://v17.dev/projects/flarum-seo",
"support": {
"forum": "https://discuss.flarum.org/d/18316",
"issues": "https://github.com/v17development/flarum-seo/issues",
"source": "https://github.com/v17development/flarum-seo",
"docs": "https://community.v17.dev/knowledgebase/category/flarum-seo"
},
"autoload": {
"psr-4": {
"V17Development\\FlarumSeo\\": "src/"
}
},
"require": {
"php": "^8.0",
"flarum/core": "^1.0.0",
"ext-json": "*"
},
"require-dev": {
"flarum/tags": "^1.8",
"fof/pages": "^1.0",
"fof/best-answer": "^1.6",
"flarum/phpstan": "^1.0"
},
"conflict": {
"zerosonesfun/elint": "*",
"franzl/flarum-open-links-in-new-tab": "*"
},
"suggest": {
"fof/sitemap": "Allows you to generate powerful sitemap.xml files"
},
"extra": {
"flarum-extension": {
"title": "SEO",
"category": "feature",
"optional-dependencies": [
"flarum/tags"
],
"icon": {
"name": "fas fa-check",
"backgroundColor": "#0072ff",
"color": "#ffffff"
}
},
"flagrow": {
"discuss": "https://discuss.flarum.org/d/18316"
}
},
"scripts": {
"analyse:phpstan": "phpstan analyse",
"clear-cache:phpstan": "phpstan clear-result-cache"
}
}