-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.25 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.25 KB
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": "harugon/gtm",
"type": "mediawiki-extension",
"description": "Google Tag Manger",
"keywords": [
"MediaWiki",
"Google Tag Manger"
],
"license": "MIT",
"authors": [
{
"name": "harugon",
"email": "info@harugon.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"composer/installers": "~1.0"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "38.0.0",
"mediawiki/minus-x": "1.1.1",
"squizlabs/php_codesniffer": "3.*",
"ockcyp/covers-validator": "1.3.3",
"php-parallel-lint/php-console-highlighter": "0.5.0",
"php-parallel-lint/php-parallel-lint": "1.3.1",
"phpunit/phpunit": "^8.5"
},
"autoload": {
"psr-4": {
"MediaWiki\\Extension\\Gtm\\": "includes/",
"MediaWiki\\Extension\\Gtm\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"phpunit",
"covers-validator",
"@phpcs",
"minus-x check ."
],
"cover": "phpunit --coverage-html coverage",
"fix": [
"minus-x fix .",
"phpcbf"
],
"phpcs": "phpcs -sp"
},
"bin-dir" : "/vendor/bin/",
"extra": {
"installer-name": "Gtm"
}
}