-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (83 loc) · 1.77 KB
/
composer.json
File metadata and controls
84 lines (83 loc) · 1.77 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"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": ">=8.1"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "~10.5.63",
"mediawiki/mediawiki-codesniffer": "48.0.0",
"mustangostang/spyc": "0.6.3",
"mhujer/yaml-sort-checker": "^1.5",
"symfony/console": "^5.4",
"psr/log": "^2.0",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"mediawiki/minus-x": "~1.1",
"ockcyp/covers-validator": "^1.7"
},
"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",
"minus-x": "minus-x check .",
"covers": "covers-validator",
"yaml-sort-check": "yaml-sort-checker",
"test": [
"@composer validate --no-interaction",
"parallel-lint . --exclude vendor --exclude node_modules",
"phpunit",
"@cs",
"@minus-x",
"@yaml-sort-check",
"@covers"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.1"
}
}
}