-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathcomposer.json
More file actions
99 lines (99 loc) · 3.1 KB
/
Copy pathcomposer.json
File metadata and controls
99 lines (99 loc) · 3.1 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "fof/seo",
"description": "Adds SEO tags for your Flarum forum",
"type": "flarum-extension",
"license": "MIT",
"authors": [
{
"name": "FriendsOfFlarum",
"homepage": "https://github.com/FriendsOfFlarum"
}
],
"homepage": "https://friendsofflarum.org",
"support": {
"issues": "https://github.com/FriendsOfFlarum/seo/issues",
"source": "https://github.com/FriendsOfFlarum/seo",
"forum": "https://discuss.flarum.org/d/39374",
"docs": "https://github.com/FriendsOfFlarum/seo/blob/2.x/docs/README.md"
},
"autoload": {
"psr-4": {
"FoF\\Seo\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FoF\\Seo\\Tests\\": "tests/"
}
},
"require": {
"flarum/core": "^2.0.0",
"flarum/tags": "*",
"ext-json": "*"
},
"require-dev": {
"flarum/likes": "*",
"flarum/markdown": "*",
"fof/pages": "^2.0.0",
"fof/best-answer": "^2.0.0",
"fof/gamification": "*",
"flarum/phpstan": "^2.0.0",
"flarum/testing": "^2.0.0",
"fof/discussion-views": "*",
"fof/upload": "*",
"fof/user-directory": "*"
},
"conflict": {
"zerosonesfun/elint": "*",
"franzl/flarum-open-links-in-new-tab": "*"
},
"replace": {
"v17development/flarum-seo": "*"
},
"suggest": {
"fof/sitemap": "Provides sitemap and robots.txt functionality.",
"fof/discussion-views": "Adds a view-count interaction statistic to discussion structured data.",
"fof/discussion-language": "Sets per-discussion inLanguage in structured data for multi-language forums."
},
"extra": {
"flarum-extension": {
"title": "FoF SEO",
"category": "feature",
"optional-dependencies": [
"flarum/markdown",
"fof/pages",
"fof/sitemap",
"fof/upload",
"fof/best-answer",
"fof/discussion-views",
"fof/discussion-language",
"fof/user-directory"
],
"icon": {
"name": "fas fa-check",
"backgroundColor": "#e74c3c",
"color": "#fff"
}
}
},
"scripts": {
"analyse:phpstan": "phpstan analyse",
"clear-cache:phpstan": "phpstan clear-result-cache",
"test": [
"@test:unit",
"@test:integration"
],
"test:unit": "phpunit -c tests/phpunit.unit.xml",
"test:integration": "phpunit -c tests/phpunit.integration.xml",
"test:setup": "@php tests/integration/setup.php"
},
"scripts-descriptions": {
"analyse:phpstan": "Run static analysis",
"test": "Runs all tests.",
"test:unit": "Runs all unit tests.",
"test:integration": "Runs all integration tests.",
"test:setup": "Sets up a database for use with integration tests. Execute this only once."
},
"minimum-stability": "beta",
"prefer-stable": true
}