-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
67 lines (67 loc) · 1.35 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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",
"email": "amir.aharoni@mail.huji.ac.il"
},
{
"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": {
"ext-curl": "*",
"phpunit/phpunit": "9.6.20",
"mediawiki/mediawiki-codesniffer": "43.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",
"yaml-sort-check": "composer require mhujer/yaml-sort-checker; yaml-sort-checker",
"test": [
"@composer validate --no-interaction",
"phpunit",
"@cs"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}