-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (58 loc) · 1.43 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
{
"name": "mediawiki/form-completions",
"extra": {
"installer-name": "FormCompletions"
},
"license": "GPL-3.0+",
"type": "mediawiki-extension",
"homepage": "https://www.mediawiki.org/wiki/Extension:FormCompletions",
"description": "Provide an extensible AutoCompletion API to MediaWiki.",
"keywords": [
"extension",
"wiki",
"mediawiki",
"forms"
],
"authors": [
{
"name": "Mark A. Hershberger",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload" : {
"psr-4": {
"MediaWiki\\Extensions\\FormCompletions\\Tests\\" : "tests/phpunit",
"MediaWiki\\Extensions\\FormCompletions\\" : "src"
}
},
"require": {
"php": ">=5.3.0",
"composer/installers": "1.*,>=1.0.1"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9.2",
"jakub-onderka/php-console-highlighter": "0.3.2",
"mediawiki/minus-x": "0.2.1",
"mediawiki/mediawiki-codesniffer": "14.1.0",
"phpunit/phpunit": "4.8.36",
"phpmd/phpmd": "~2.1"
},
"scripts": {
"phpunit": "php $MW_INSTALL_PATH/tests/phpunit/phpunit.php -c .phpunit.xml.dist",
"phpdbg": "phpdbg -qrr $MW_INSTALL_PATH/tests/phpunit/phpunit.php -c .phpunit.xml.dist",
"phpmd": "phpmd src text .phpmd.xml",
"phpcs": "phpcs -p -s",
"phpcbf": "phpcbf",
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"minus-x check .",
"phpmd src text .phpmd.xml || :",
"phpcs -p -s"
],
"fix": [
"minus-x fix .",
"phpcbf"
]
}
}