summaryrefslogtreecommitdiff
blob: 4903698903d1a3a042a61ca41135d9d5b18a555f (plain)
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
{
	"name": "mediawiki/pluggable-auth",
	"extra": {
		"installer-name": "PluggableAuth"
	},
	"license": "MIT",
	"type": "mediawiki-extension",
	"homepage": "https://www.mediawiki.org/wiki/Extension:PluggableAuth",
	"description": "An authentication framework for MediaWiki",
	"keywords": [
		"extension",
		"wiki",
		"mediawiki",
		"authentication"
	],
	"authors": [
		{
			"name": "Cindy Cicalese",
			"email": "cindom@gmail.com",
			"role": "Contributor"
		}
	],
	"require-dev": {
		"mediawiki/mediawiki-codesniffer": "31.0.0",
		"mediawiki/minus-x": "1.1.0",
		"php-parallel-lint/php-console-highlighter": "0.5.0",
		"php-parallel-lint/php-parallel-lint": "1.2.0",
		"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",
		"test": [
			"parallel-lint . --exclude vendor --exclude node_modules",
			"minus-x check .",
			"phpmd includes text .phpmd.xml || :",
			"phpcs -p -s"
		],
		"fix": [
			"minus-x fix .",
			"phpcbf"
		]
	}
}