mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Editcount
synced 2024-11-27 17:50:50 +00:00
a646590a95
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: I8b789d78cedfd1f7ff761587f39c532a51a2c300
21 lines
411 B
JSON
21 lines
411 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"
|
|
}
|
|
}
|