-
Notifications
You must be signed in to change notification settings - Fork 28
/
composer.json
101 lines (101 loc) · 1.99 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "oojs/oojs-ui",
"description": "Provides library of common widgets, layouts, and windows.",
"homepage": "https://www.mediawiki.org/wiki/OOUI",
"license": "MIT",
"require": {
"php": ">=7.4.3"
},
"authors": [
{
"name": "Bartosz Dziewoński",
"email": "[email protected]"
},
{
"name": "Ed Sanders",
"email": "[email protected]"
},
{
"name": "James D. Forrester",
"email": "[email protected]"
},
{
"name": "Kirsten Menger-Anderson",
"email": "[email protected]"
},
{
"name": "Kunal Mehta",
"email": "[email protected]"
},
{
"name": "Moriel Schottlender",
"email": "[email protected]"
},
{
"name": "Prateek Saxena",
"email": "[email protected]"
},
{
"name": "Roan Kattouw",
"email": "[email protected]"
},
{
"name": "Thiemo Kreuz",
"email": "[email protected]"
},
{
"name": "Timo Tijhof",
"email": "[email protected]"
},
{
"name": "Trevor Parscal",
"email": "[email protected]"
},
{
"name": "Volker E.",
"email": "[email protected]"
}
],
"require-dev": {
"mediawiki/mediawiki-codesniffer": "45.0.0",
"mediawiki/mediawiki-phan-config": "0.14.0",
"mediawiki/minus-x": "1.1.3",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"phpunit/phpunit": "9.6.21"
},
"autoload": {
"classmap": [
"php/"
]
},
"autoload-dev": {
"classmap": [
"tests/phpunit/TestCase.php",
"tests/phpunit/MockWidget.php"
]
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude demos/vendor",
"@phpcs",
"phpunit",
"minus-x check .",
"@phan"
],
"fix": [
"minus-x fix .",
"phpcbf"
],
"doc": [
"doxygen"
],
"phan": "phan -d . -p --require-config-exists --allow-polyfill-parser --long-progress-bar",
"phpcs": "phpcs -sp --cache"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}