mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Description2
synced 2024-11-23 22:33:34 +00:00
2c477a969c
composer: * mediawiki/mediawiki-codesniffer: 31.0.0 → 38.0.0 npm: * async: 3.2.0 → 3.2.3 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 * nomnom: 1.8.1 → 1.8.1 * https://github.com/advisories/GHSA-cf4h-3jhx-xvhq * underscore: 1.6.0 → 1.6.0 * https://github.com/advisories/GHSA-cf4h-3jhx-xvhq Additional changes: * Set `name` in package.json. * composer.json: Updated phpcs command in composer test (T280592). * composer.json: Added phpcs command to scripts (T280592). Change-Id: I5b2b8d2d95e442c1f01eee42a45b12401f480281
21 lines
419 B
JSON
21 lines
419 B
JSON
{
|
|
"require-dev": {
|
|
"mediawiki/mediawiki-codesniffer": "38.0.0",
|
|
"mediawiki/minus-x": "1.1.0",
|
|
"php-parallel-lint/php-console-highlighter": "0.5.0",
|
|
"php-parallel-lint/php-parallel-lint": "1.2.0"
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"parallel-lint . --exclude vendor --exclude node_modules",
|
|
"minus-x check .",
|
|
"@phpcs"
|
|
],
|
|
"fix": [
|
|
"minus-x fix .",
|
|
"phpcbf"
|
|
],
|
|
"phpcs": "phpcs -sp --cache"
|
|
}
|
|
}
|