53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "bluespice/permissionmanager",
|
|
"type": "mediawiki-extension",
|
|
"description": "Administration interface for editing user rights",
|
|
"license": "GPL-3.0-only",
|
|
"authors": [
|
|
{
|
|
"name": "Hallo Welt! GmbH",
|
|
"email": "info@hallowelt.com",
|
|
"homepage": "https://www.hallowelt.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"composer/installers": "~1.0|~2",
|
|
"mwstake/mediawiki-component-dynamicconfig": "~2",
|
|
"mwstake/mediawiki-component-utils": "~3"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"BlueSpice\\PermissionManager\\": "src"
|
|
}
|
|
},
|
|
"require-dev": {
|
|
"mediawiki/mediawiki-codesniffer": "45.0.0",
|
|
"mediawiki/mediawiki-phan-config": "0.14.0",
|
|
"mediawiki/minus-x": "1.1.3",
|
|
"php-parallel-lint/php-console-highlighter": "1.0.0",
|
|
"php-parallel-lint/php-parallel-lint": "1.4.0"
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"parallel-lint . --exclude vendor --exclude node_modules",
|
|
"@phpcs",
|
|
"minus-x check ."
|
|
],
|
|
"fix": [
|
|
"minus-x fix .",
|
|
"phpcbf"
|
|
],
|
|
"phan": "phan -d . --long-progress-bar",
|
|
"phpcs": "phpcs -sp --cache"
|
|
},
|
|
"extra": {
|
|
"installer-name": "BlueSpicePermissionManager"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"composer/installers": true,
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
}
|
|
}
|