summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/MixedNamespaceSearchSuggestions/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/MixedNamespaceSearchSuggestions/composer.json')
-rw-r--r--www/wiki/extensions/MixedNamespaceSearchSuggestions/composer.json35
1 files changed, 35 insertions, 0 deletions
diff --git a/www/wiki/extensions/MixedNamespaceSearchSuggestions/composer.json b/www/wiki/extensions/MixedNamespaceSearchSuggestions/composer.json
new file mode 100644
index 00000000..618f6451
--- /dev/null
+++ b/www/wiki/extensions/MixedNamespaceSearchSuggestions/composer.json
@@ -0,0 +1,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 ."
+ ]
+ }
+}