Files
language-data/composer.json
Abijeet a182ddb215 Add users with more than 5 commits to credits / authors
Also update authors to be alphabetically ordered.
2020-02-24 16:35:43 +02:00

55 lines
997 B
JSON

{
"name": "wikimedia/language-data",
"description": "CLDR based language data and utilities.",
"keywords": [
"cldr",
"cldr-data",
"internationalization",
"localization",
"l10n"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Amir E. Aharoni"
},
{
"name": "Kartik Mistry"
},
{
"name": "Niklas Laxström",
"email": "niklas.laxstrom@gmail.com"
},
{
"name": "Santhosh Thottingal",
"email": "santhosh.thottingal@gmail.com"
}
],
"type": "library",
"require": {
"php": ">=7.2"
},
"require-dev": {
"phpunit/phpunit": "8.*",
"mediawiki/mediawiki-codesniffer": "29.0.0"
},
"support": {
"issues": "https://github.com/wikimedia/language-data/issues",
"irc": "irc://irc.freenode.net/mediawiki-i18n"
},
"autoload": {
"psr-4": {
"Wikimedia\\LanguageData\\": "src/"
}
},
"scripts": {
"fix": "phpcbf",
"cs": "phpcs -p",
"test": [
"composer validate --no-interaction",
"phpunit tests/php/*",
"phpcs -p"
]
}
}