forked from wikimedia/mediawiki-extensions-Cargo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 947 Bytes
/
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
{
"name": "mediawiki/cargo",
"description": "A MediaWiki extension that allows for the storage and querying of data contained within templates.",
"type": "mediawiki-extension",
"keywords": [
"MediaWiki"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:Cargo",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Yaron Koren"
}
],
"support": {
"issues": "https://phabricator.wikimedia.org/tag/mediawiki-extensions-cargo/",
"irc": "irc://irc.freenode.net/mediawiki",
"source": "https://phabricator.wikimedia.org/diffusion/ECRG/"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "1.0.0",
"jakub-onderka/php-console-highlighter": "0.3.2",
"mediawiki/minus-x": "0.3.1",
"mediawiki/mediawiki-codesniffer": "18.0.0"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"minus-x check .",
"phpcs -sp"
],
"fix": [
"minus-x fix .",
"phpcbf"
]
}
}