summaryrefslogtreecommitdiff
blob: 2b84d310ee8689498d5cb4e44daa2e5f7c93f186 (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
{
	"name": "mediawiki/user-functions",
	"type": "mediawiki-extension",
	"description": "Enhance parser with user functions",
	"keywords": [
		"MediaWiki",
		"User"
	],
	"homepage": "https://www.mediawiki.org/wiki/Extension:UserFunctions",
	"license": "GPL-2.0-or-later",
	"require": {
		"php": ">=5.3.0",
		"composer/installers": "1.*,>=1.0.1"
	},
	"autoload": {
		"files": [
			"UserFunctions.php"
		],
		"classmap": [
			"UserFunctions_body.php"
		]
	},
	"require-dev": {
		"mediawiki/minus-x": "1.1.0",
		"php-parallel-lint/php-console-highlighter": "0.5.0",
		"php-parallel-lint/php-parallel-lint": "1.2.0"
	},
	"scripts": {
		"test": [
			"parallel-lint . --exclude vendor --exclude node_modules",
			"minus-x check ."
		],
		"fix": [
			"minus-x fix ."
		]
	}
}