forked from enterprisemediawiki/WatchAnalytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
43 lines (43 loc) · 1.04 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
{
"name": "mediawiki/watch-analytics",
"type": "mediawiki-extension",
"description": "Providing accountability to MediaWiki page-watches",
"keywords": [
"MediaWiki",
"Accountability"
],
"homepage": "https://www.mediawiki.org/wiki/Extension:WatchAnalytics",
"license": "GPL-3.0+",
"authors": [
{
"name": "James Montalvo",
"homepage": "http://jamesmontalvo3.com",
"role": "Author"
}
],
"support": {
"issues": "https://github.com/enterprisemediawiki/WatchAnalytics/issues",
"wiki": "https://www.mediawiki.org/wiki/Extension:WatchAnalytics",
"source": "https://github.com/enterprisemediawiki/WatchAnalytics"
},
"require": {
"php": ">=5.6.0"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "1.0.0",
"mediawiki/mediawiki-codesniffer": "19.1.0 || 23.0.0",
"jakub-onderka/php-console-highlighter": "0.3.2",
"mediawiki/minus-x": "0.3.1"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s",
"minus-x check ."
],
"fix": [
"phpcbf",
"minus-x fix ."
]
}
}