-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.37 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
{
"name": "mwstake/generic-tag-handler",
"description": "Provides a generic tag handler interface for MediaWiki",
"license": "GPL-3.0-only",
"authors": [
{
"name": "BlueSpice",
"email": "[email protected]"
},
{
"name": "Mark A. Hershberger",
"email": "[email protected]"
}
],
"require": {
"param-processor/param-processor": "^1.12"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"php-parallel-lint/php-console-highlighter": "^1.0",
"mediawiki/mediawiki-codesniffer": "^42.0",
"mediawiki/minus-x": "^1.1",
"vimeo/psalm": "^5.15",
"mediawiki/mediawiki-phan-config": "^0.13.0"
},
"autoload": {
"psr-4": {
"MWStake\\MediaWiki\\Component\\GenericTagHandler\\": "src/",
"MWStake\\MediaWiki\\Component\\GenericTagHandler\\Tests\\": "tests/"
},
"files": [
"bootstrap.php"
]
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"minus-x check .",
"npm test"
],
"error-format-test": [
"phpcs -s --report=emacs --basepath=$PWD . || true",
"phan -d . -m text --analyze-twice --no-progress-bar | sed 's, ,:,'",
"psalm --output-format=emacs --show-info=true --no-progress | sed \"s,${PWD}/,,\""
],
"fix": [
"minus-x fix .",
"phpcbf",
"psalter --issues=all"
],
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache",
"psalm": "psalm"
}
}