summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'MLEB/Translate/composer.json')
-rw-r--r--MLEB/Translate/composer.json32
1 files changed, 25 insertions, 7 deletions
diff --git a/MLEB/Translate/composer.json b/MLEB/Translate/composer.json
index 07863595..82f49cc7 100644
--- a/MLEB/Translate/composer.json
+++ b/MLEB/Translate/composer.json
@@ -14,7 +14,7 @@
"translatewiki.net"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:Translate",
- "license": "GPL-2.0+",
+ "license": "GPL-2.0-or-later",
"authors": [
{
"name": "Niklas Laxström",
@@ -23,7 +23,7 @@
},
{
"name": "Siebrand Mazeland",
- "email": "s.mazeland@xs4all.nl",
+ "email": "siebrand@kitano.nl",
"role": "Developer"
}
],
@@ -34,17 +34,35 @@
"wiki": "https://www.mediawiki.org/wiki/Extension:Translate"
},
"require": {
- "php": ">=5.3.0",
+ "php": ">=5.4",
"composer/installers": ">=1.0.1",
- "mediawiki/universal-language-selector": "*"
+ "mediawiki/universal-language-selector": "*",
+ "mustangostang/spyc": "0.6.2",
+ "davefx/phplot": "6.2.1"
+ },
+ "require-dev": {
+ "jakub-onderka/php-parallel-lint": "1.0.0",
+ "mediawiki/mediawiki-codesniffer": "19.1.0",
+ "jakub-onderka/php-console-highlighter": "0.3.2",
+ "mediawiki/minus-x": "0.3.1"
},
"suggest": {
"mediawiki/babel": "Users can easily indicate their language proficiency on their user page",
"mediawiki/translation-notifications": "Manage communication with translators",
- "mustangostang/spyc": "More recent version of the bundled spyc library",
"romaricdrigon/metayaml": "If you want to validate message group configurations"
},
- "autoload": {
- "files": ["Translate.php"]
+ "scripts": {
+ "fix": [
+ "phpcbf",
+ "minus-x fix ."
+ ],
+ "test": [
+ "parallel-lint . --exclude vendor --exclude node_modules --exclude extensions",
+ "phpcs -p -s",
+ "minus-x check ."
+ ]
+ },
+ "extra": {
+ "phan-taint-check-plugin": "1.5.0"
}
}