mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ImageMap
synced 2024-11-13 17:36:54 +00:00
6d7f7b65a5
`composer update --no-interactive` errors out if this flag is not set.
Setting it to true, as that was the status quo before Composer 2.2.
Bug: T298283
Change-Id: Ib087b5e85d6910f17bc622b0b7d7e67cd5327d9f
(cherry picked from commit 581909aa39
)
42 lines
928 B
JSON
42 lines
928 B
JSON
{
|
|
"name": "mediawiki/image-map",
|
|
"type": "mediawiki-extension",
|
|
"description": "Allows clickable HTML image maps",
|
|
"keywords": [
|
|
"Wiki",
|
|
"MediaWiki",
|
|
"ImageMap"
|
|
],
|
|
"homepage": "https://www.mediawiki.org/wiki/Extension:ImageMap",
|
|
"license": "GPL-2.0-or-later",
|
|
"require": {
|
|
"php": ">=5.4",
|
|
"composer/installers": "1.*,>=1.0.1"
|
|
},
|
|
"require-dev": {
|
|
"mediawiki/mediawiki-codesniffer": "39.0.0",
|
|
"mediawiki/mediawiki-phan-config": "0.11.1",
|
|
"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": {
|
|
"fix": [
|
|
"minus-x fix .",
|
|
"phpcbf"
|
|
],
|
|
"test": [
|
|
"parallel-lint . --exclude vendor --exclude node_modules",
|
|
"@phpcs",
|
|
"minus-x check ."
|
|
],
|
|
"phan": "phan -d . --long-progress-bar",
|
|
"phpcs": "phpcs -sp --cache"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"composer/installers": true
|
|
}
|
|
}
|
|
}
|