-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
54 lines (54 loc) · 1.39 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
{
"name": "mediawiki/external-data",
"type": "mediawiki-extension",
"description": "Allows retrieving structured data from external URLs, databases and other sources into MediaWiki-powered wikis",
"license": "GPL-2.0-or-later",
"require": {
"composer/installers": "^2|^1.0.1",
"symfony/css-selector": "~5.1"
},
"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",
"roave/security-advisories": "dev-latest"
},
"suggest": {
"ext-ldap": "*",
"ext-odbc": "*",
"ext-soap": "*",
"ext-yaml": "*",
"ext-mongodb": "*",
"mongodb/mongodb": "*",
"ext-bz2": "*",
"ext-phar": "*",
"ext-zip": "*",
"ext-rar": "*",
"ext-zlib": "*"
},
"scripts": {
"test": [
"parallel-lint . --exclude node_modules --exclude vendor",
"@phpcs",
"minus-x check .",
"@phan"
],
"cover": "phpunit --coverage-html coverage",
"fix": [
"minus-x fix .",
"phpcbf"
],
"phpcs": "phpcs -sp --cache",
"phan": "vendor/bin/phan -d . --long-progress-bar --color --require-config-exists --allow-polyfill-parser"
},
"config": {
"optimize-autoloader": true,
"prepend-autoloader": false,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}