-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathextension.json
More file actions
62 lines (62 loc) · 1.52 KB
/
Copy pathextension.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "SemanticMetaTags",
"version": "5.0.0",
"author": [
"James Hong Kong"
],
"url": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Meta_Tags",
"descriptionmsg": "smt-desc",
"namemsg": "smt-name",
"license-name": "GPL-2.0-or-later",
"type": "semantic",
"requires": {
"MediaWiki": ">= 1.43",
"extensions": {
"SemanticMediaWiki": ">= 7.0.0"
}
},
"MessagesDirs": {
"SemanticMetaTags": [
"i18n"
]
},
"ExtensionFunctions": [
"SMT\\Setup::onExtensionFunction"
],
"AutoloadNamespaces": {
"SMT\\": "src/"
},
"TestAutoloadNamespaces": {
"SMT\\Tests\\": "tests/phpunit/"
},
"config_prefix": "smtg",
"config": {
"TagsProperties": {
"value": [],
"description": "An array of tags that assigns related properties such as `'keywords' => [ 'Has keywords', ... ]`."
},
"TagsStrings": {
"value": [],
"description": "Describes static content for an assigned `<meta>` tag such as `'some:tag' => 'Content that is static'`."
},
"TagsBlacklist": {
"value": [
"generator",
"robots"
],
"description": "Listed tags are generally assumed to be reserved or excluded for free use."
},
"TagsPropertyFallbackUsage": {
"value": false,
"description": "In case it is set `true` then the first property that returns a valid content for an assigned tag will be used exclusively."
},
"MetaPropertyPrefixes": {
"value": [
"og:"
],
"description": "Identifies prefixes that require `meta:property:...`."
}
},
"load_composer_autoloader": true,
"manifest_version": 2
}