Output of composer outdated: Direct dependencies required in composer.json: mediawiki/mediawiki-codesniffer v39.0.0 v41.0.0 phpunit/phpunit 9.5.25 9.6.7 Transitive dependencies not required in compose myclabs/deep-copy 1.11.0 1.11.1 nikic/php-parser v4.15.3 v4.15.4 phpunit/php-code-coverage 9.2.23 9.2.26 sebastian/environment 5.1.4 5.1.5 sebastian/recursion-context 4.0.4 4.0.5 sebastian/type 3.2.0 3.2.1 squizlabs/php_codesniffer 3.6.2 3.7.2 Manually updated phpunit and mediawiki-codesniffer. Update phpunit.xml file as per latest format. Bug: https://phabricator.wikimedia.org/T333823
60 lines
1.1 KiB
JSON
60 lines
1.1 KiB
JSON
{
|
|
"name": "wikimedia/language-data",
|
|
"description": "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"
|
|
},
|
|
{
|
|
"name": "Abijeet Patro",
|
|
"email": "abijeetpatro@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.3",
|
|
"mustangostang/spyc": "0.6.3"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "9.6.7",
|
|
"mediawiki/mediawiki-codesniffer": "41.0.0"
|
|
},
|
|
"support": {
|
|
"issues": "https://github.com/wikimedia/language-data/issues",
|
|
"irc": "irc://irc.freenode.net/mediawiki-i18n",
|
|
"docs": "https://language-data.readthedocs.io/en/latest/index.html"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Wikimedia\\LanguageData\\": "src/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"fix": "phpcbf",
|
|
"cs": "phpcs -sp",
|
|
"test": [
|
|
"@composer validate --no-interaction",
|
|
"phpunit",
|
|
"@cs"
|
|
]
|
|
}
|
|
}
|