mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-25 00:35:43 +00:00
7a07d22494
composer: * mediawiki/mediawiki-phan-config: 0.11.1 → 0.12.0 * php-parallel-lint/php-console-highlighter: 0.5.0 → 1.0.0 * php-parallel-lint/php-parallel-lint: 1.3.1 → 1.3.2 npm: * grunt: 1.4.0 → 1.5.3 * grunt-banana-checker: 0.9.0 → 0.10.0 * grunt-eslint: 23.0.0 → 24.0.0 * async: 3.2.0 → 3.2.4 * https://github.com/advisories/GHSA-fwr7-v2mv-hh25 * minimatch: 3.0.4 → 3.0.8 * https://github.com/advisories/GHSA-f8q6-p94x-37v3 * minimist: 1.2.5 → 1.2.7 * https://github.com/advisories/GHSA-xvch-5gv4-984h * nanoid: 3.1.25 → 3.3.4 * https://github.com/advisories/GHSA-qrpm-p2h7-hrv2 Additional changes: * Set `name` in package.json. Change-Id: I76d70ca68b385b44e647cdbebd1a3e473f3fb566
28 lines
624 B
JSON
28 lines
624 B
JSON
{
|
|
"require": {
|
|
"christian-riesen/base32": "^1.4.0",
|
|
"jakobo/hotp-php": "2.0.0"
|
|
},
|
|
"require-dev": {
|
|
"mediawiki/mediawiki-codesniffer": "38.0.0",
|
|
"mediawiki/mediawiki-phan-config": "0.12.0",
|
|
"mediawiki/minus-x": "1.1.1",
|
|
"php-parallel-lint/php-console-highlighter": "1.0.0",
|
|
"php-parallel-lint/php-parallel-lint": "1.3.2"
|
|
},
|
|
"scripts": {
|
|
"lint": "parallel-lint . --exclude vendor --exclude node_modules",
|
|
"phpcs": "phpcs -p -s",
|
|
"fix": [
|
|
"minus-x fix .",
|
|
"phpcbf"
|
|
],
|
|
"test": [
|
|
"composer lint",
|
|
"composer phpcs",
|
|
"minus-x check ."
|
|
],
|
|
"phan": "phan -d . --long-progress-bar"
|
|
}
|
|
}
|