summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticResultFormats/composer.json
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
committerYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
commitfc7369835258467bf97eb64f184b93691f9a9fd5 (patch)
treedaabd60089d2dd76d9f5fb416b005fbe159c799d /www/wiki/extensions/SemanticResultFormats/composer.json
first commit
Diffstat (limited to 'www/wiki/extensions/SemanticResultFormats/composer.json')
-rw-r--r--www/wiki/extensions/SemanticResultFormats/composer.json87
1 files changed, 87 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticResultFormats/composer.json b/www/wiki/extensions/SemanticResultFormats/composer.json
new file mode 100644
index 00000000..abb877c5
--- /dev/null
+++ b/www/wiki/extensions/SemanticResultFormats/composer.json
@@ -0,0 +1,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"
+ }
+}