DynamicPageList3/composer.json

22 lines
482 B
JSON
Raw Normal View History

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
}