summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/MixedNamespaceSearchSuggestions/composer.json
blob: 618f6451df9c5662fb1719d989f2d95d82830386 (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
{
	"name": "mediawiki/mixed-namespace-search-suggestions",
	"type": "mediawiki-extension",
	"description": "Includes suggestions from all content namespaces in the search box, showing from which namespace each suggestion is from.",
	"homepage": "https://www.mediawiki.org/wiki/Extension:MixedNamespaceSearchSuggestions",
	"license": "MIT",
	"authors": [
		{
			"name": "Niklas Laxström",
			"email": "niklas.laxstrom@gmail.com",
			"role": "Author"
		}
	],
	"require": {
		"php": ">=5.5.9",
		"composer/installers": "~1.0"
	},
	"require-dev": {
		"jakub-onderka/php-parallel-lint": "1.0.0",
		"mediawiki/mediawiki-codesniffer": "18.0.0",
		"jakub-onderka/php-console-highlighter": "0.3.2",
		"mediawiki/minus-x": "0.3.1"
	},
	"scripts": {
		"fix": [
			"phpcbf",
			"minus-x fix ."
		],
		"test": [
			"parallel-lint . --exclude vendor --exclude node_modules",
			"phpcs -p -s",
			"minus-x check ."
		]
	}
}