DynamicPageList3/composer.json

39 lines
1.2 KiB
JSON
Raw Normal View History

2020-11-22 19:56:23 +00:00
{
2022-08-08 03:27:30 +00:00
"name": "universal-omega/dynamic-page-list3",
"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",
2021-10-01 22:52:30 +00:00
"license": "GPL-3.0-or-later",
"require": {
"composer/installers": ">=1.0.1"
},
2020-11-22 19:56:23 +00:00
"require-dev": {
"mediawiki/mediawiki-codesniffer": "43.0.0",
"mediawiki/mediawiki-phan-config": "0.14.0",
"mediawiki/minus-x": "1.1.3",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.4.0"
2020-11-22 19:56:23 +00:00
},
"scripts": {
"fix": [
"minus-x fix .",
2021-10-01 22:52:30 +00:00
"phpcbf; if [ $? -eq 1 ]; then exit 0; fi"
],
"test": [
"parallel-lint . --exclude node_modules --exclude vendor",
"minus-x check .",
"@phpcs"
2021-02-22 23:17:55 +00:00
],
2021-10-01 22:52:30 +00:00
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache"
},
"config": {
"prepend-autoloader": false,
"optimize-autoloader": true,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
2020-11-22 19:56:23 +00:00
}
2021-02-22 23:17:55 +00:00
}