forked from wikimedia/oojs-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
87 lines (87 loc) · 1.7 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
{
"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.2.9"
},
"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": "Prateek Saxena",
"email": "[email protected]"
},
{
"name": "Roan Kattouw",
"email": "[email protected]"
},
{
"name": "Rob Moen",
"email": "[email protected]"
},
{
"name": "Timo Tijhof",
"email": "[email protected]"
},
{
"name": "Trevor Parscal",
"email": "[email protected]"
}
],
"require-dev": {
"mediawiki/mediawiki-codesniffer": "37.0.0",
"mediawiki/mediawiki-phan-config": "0.11.0",
"mediawiki/minus-x": "1.1.1",
"php-parallel-lint/php-console-highlighter": "0.5.0",
"php-parallel-lint/php-parallel-lint": "1.3.1",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"classmap": [
"php/"
]
},
"autoload-dev": {
"classmap": [
"tests/phpunit/TestCase.php",
"tests/phpunit/MockWidget.php"
]
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude demos/vendor",
"phpcs -p -s",
"phpunit",
"minus-x check .",
"phan -d . -p --require-config-exists --allow-polyfill-parser"
],
"fix": [
"minus-x fix .",
"phpcbf"
],
"doc": [
"doxygen"
],
"phan": "phan -d . --long-progress-bar"
}
}