mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ParserFunctions
synced 2024-11-15 03:35:52 +00:00
8bf52e3f42
Document that the ParserFunctions extension may be used under the terms of any later version than 2.0 of the GPL. Bug: T125322 Change-Id: I4231498a7738becc9a55490540a1395d69310359
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "ParserFunctions",
|
|
"version": "1.6.0",
|
|
"author": [
|
|
"Tim Starling",
|
|
"Robert Rohde",
|
|
"Ross McClure",
|
|
"Juraj Simlovic"
|
|
],
|
|
"url": "https://www.mediawiki.org/wiki/Extension:ParserFunctions",
|
|
"descriptionmsg": "pfunc_desc",
|
|
"license-name": "GPL-2.0+",
|
|
"type": "parserhook",
|
|
"requires": {
|
|
"MediaWiki": ">= 1.25.0"
|
|
},
|
|
"config": {
|
|
"PFEnableStringFunctions": false,
|
|
"PFStringLengthLimit": 1000
|
|
},
|
|
"callback": "ParserFunctionsHooks::onRegistration",
|
|
"ExtensionMessagesFiles": {
|
|
"ParserFunctionsMagic": "ParserFunctions.i18n.magic.php"
|
|
},
|
|
"MessagesDirs": {
|
|
"ParserFunctions": [
|
|
"i18n"
|
|
]
|
|
},
|
|
"Hooks": {
|
|
"ParserFirstCallInit": [
|
|
"ParserFunctionsHooks::onParserFirstCallInit"
|
|
],
|
|
"ScribuntoExternalLibraries": [
|
|
"ParserFunctionsHooks::onScribuntoExternalLibraries"
|
|
]
|
|
},
|
|
"AutoloadClasses": {
|
|
"ExtParserFunctions": "ParserFunctions_body.php",
|
|
"ExprParser": "Expr.php",
|
|
"ExprError": "Expr.php",
|
|
"Scribunto_LuaParserFunctionsLibrary": "ParserFunctions.library.php",
|
|
"ParserFunctionsHooks": "ParserFunctions.hooks.php"
|
|
},
|
|
"ParserTestFiles": [
|
|
"funcsParserTests.txt",
|
|
"stringFunctionTests.txt"
|
|
],
|
|
"manifest_version": 1
|
|
}
|