summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticResultFormats/composer.json
blob: abb877c5396e2ddedbb6802fa8ebbd749ca72631 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
	"name": "mediawiki/semantic-result-formats",
	"type": "mediawiki-extension",
	"description": "Provides additional result formats for queries using Semantic MediaWiki",
	"keywords": [
		"SRF",
		"Semantic Result Formats",
		"Result Formats",
		"SMW",
		"Semantic MediaWiki",
		"Wiki",
		"MediaWiki"
	],
	"homepage": "https://www.semantic-mediawiki.org/wiki/Extension:Semantic_Result_Formats",
	"license": "GPL-2.0-or-later",
	"authors": [
		{
			"name": "Jeroen De Dauw",
			"email": "jeroendedauw@gmail.com",
			"homepage": "https://www.entropywins.wtf/",
			"role": "Developer"
		},
		{
			"name": "James Hong Kong",
			"homepage": "https://www.semantic-mediawiki.org/wiki/User:MWJames",
			"role": "Developer"
		},
		{
			"name": "Stephan Gambke",
			"homepage": "https://www.mediawiki.org/wiki/User:F.trott",
			"role": "Developer"
		},
		{
			"name": "Yaron Koren",
			"homepage": "https://www.yaronkoren.com/",
			"role": "Developer"
		}
	],
	"support": {
		"email": "semediawiki-user@lists.sourceforge.net",
		"issues": "https://github.com/SemanticMediaWiki/SemanticResultFormats/issues",
		"forum": "https://www.semantic-mediawiki.org/wiki/semantic-mediawiki.org_talk:Community_portal",
		"wiki": "https://www.semantic-mediawiki.org/wiki/",
		"source": "https://github.com/SemanticMediaWiki/SemanticResultFormats"
	},
	"require": {
		"php": ">=7.0",
		"composer/installers": "1.*,>=1.0.1",
		"mediawiki/semantic-media-wiki": "~3.0",
		"nicmart/tree": "^0.2.7",
		"data-values/geo": "~4.0|~3.0|~2.0",
		"symfony/css-selector": "^3.3",
		"mediawiki/mermaid": "~2.1"
	},
	"suggest": {
		"phpoffice/phpspreadsheet": "Required for 'format=spreadsheet'",
		"phpoffice/phpexcel": "Required for 'format=excel'",
		"mediawiki/graph-viz": "Required for 'format=graph' and 'format=process'"
	},
	"autoload": {
		"psr-4": {
			"SRF\\": "src/"
		},
		"files" : [
			"SemanticResultFormats.php"
		],
		"classmap": [
			"formats/",
			"SemanticResultFormats.hooks.php",
			"SemanticResultFormats.parser.php",
			"SemanticResultFormats.utils.php"
		]
	},
	"extra": {
		"branch-alias": {
			"dev-master": "3.1.x-dev"
		}
	},
	"config": {
		"process-timeout": 0
	},
	"scripts":{
		"test": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
		"phpunit": "php ../../tests/phpunit/phpunit.php -c phpunit.xml.dist",
		"integration": "composer phpunit -- --testsuite=semantic-result-formats-integration"
	}
}