DynamicPageList3/composer.json

34 lines
1 KiB
JSON
Raw Normal View History

2020-11-22 19:56:23 +00:00
{
"name": "mediawiki/dynamicpagelist3",
"type": "mediawiki-extension",
"description": "The DynamicPageList3 extension allows creating lists of other articles based on their category, namespace, title, references or template usage and include contents or arguments of template calls of those articles into your page.",
"homepage": "https://www.mediawiki.org/wiki/Extension:DynamicPageList3",
"license": "GPL-2.0-or-later",
"require": {
"composer/installers": ">=1.0.1"
},
"config": {
"prepend-autoloader": false,
"optimize-autoloader": true
},
2020-11-22 19:56:23 +00:00
"require-dev": {
2021-02-22 23:17:55 +00:00
"mediawiki/mediawiki-codesniffer": "35.0.0",
"mediawiki/mediawiki-phan-config": "0.10.6",
"mediawiki/minus-x": "1.1.1",
"php-parallel-lint/php-console-highlighter": "0.5.0",
"php-parallel-lint/php-parallel-lint": "1.2.0"
2020-11-22 19:56:23 +00:00
},
"scripts": {
"test": [
2021-02-22 23:17:55 +00:00
"parallel-lint . --exclude vendor --exclude node_modules",
"minus-x check .",
"phpcs -p -s"
2020-11-22 19:56:23 +00:00
],
"fix": [
"minus-x fix .",
"phpcbf"
2021-02-22 23:17:55 +00:00
],
"phan": "phan -d . --long-progress-bar"
2020-11-22 19:56:23 +00:00
}
2021-02-22 23:17:55 +00:00
}