forked from SemanticMediaWiki/SemanticMediaWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
137 lines (137 loc) · 4.11 KB
/
composer.json
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "mediawiki/semantic-media-wiki",
"type": "mediawiki-extension",
"description": "An extension to MediaWiki that lets you store and query structured data within wiki pages",
"keywords": [
"SMW",
"Semantic MediaWiki",
"Wiki",
"MediaWiki"
],
"homepage": "https://www.semantic-mediawiki.org/wiki/",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Markus Krötzsch",
"homepage": "https://www.korrekt.org/",
"role": "Original author"
},
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "https://www.entropywins.wtf/",
"role": "Core developer"
},
{
"name": "James Hong Kong",
"homepage": "https://www.semantic-mediawiki.org/wiki/User:MWJames",
"role": "Core developer"
},
{
"name": "Professional Wiki",
"email": "[email protected]",
"homepage": "https://professional.wiki",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/SemanticMediaWiki/SemanticMediaWiki/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/SemanticMediaWiki"
},
"require": {
"php": ">=7.4",
"ext-mbstring": "*",
"composer/installers": "^2.2.0|^1.0.1",
"psr/log": "~1.0",
"mediawiki/parser-hooks": "~1.4",
"param-processor/param-processor": "~1.2",
"serialization/serialization": "~3.2|~4.0",
"onoi/message-reporter": "~1.0",
"onoi/cache": "~1.2",
"onoi/event-dispatcher": "~1.0",
"onoi/blob-store": "~1.2",
"mediawiki/http-request": "~2.0|~1.1",
"onoi/callback-container": "~2.0",
"symfony/css-selector": "^5|^4|^3.3",
"seld/jsonlint": "^1.7",
"justinrainbow/json-schema": "~5.2",
"jeroen/file-fetcher": "^6|^5|^4.4",
"wikimedia/cdb": "^3|^2|^1",
"wikimedia/textcat": "^2|^1.1"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "44.0.0",
"mediawiki/mediawiki-phan-config": "0.14.0",
"mediawiki/minus-x": "1.1.3",
"phpmd/phpmd": "~2.1",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"squizlabs/php_codesniffer": "~3.5"
},
"suggest": {
"mediawiki/semantic-result-formats": "Provides additional result formats for queries of structured data"
},
"extra": {
"branch-alias": {
"dev-master": "5.x-dev"
}
},
"autoload": {
"psr-4": {
"SMW\\": "src/",
"SMW\\Maintenance\\": "maintenance/",
"SMW\\Tests\\": "tests/phpunit/",
"Onoi\\Tesa\\": "src/Tesa/src/"
},
"psr-0": {
"SemanticMediaWiki": "includes/SemanticMediaWiki.php"
},
"files": [
"includes/GlobalFunctions.php"
],
"classmap" : [
"includes/",
"tests/phpunit/includes/"
]
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": [
"@lint",
"@phpcs",
"minus-x check .",
"@phpunit:unit",
"@phpunit:integration"
],
"test-coverage": [
"@phpunit-coverage"
],
"analyze": [
"@lint",
"@phpcs"
],
"fix": [
"@phpcs-fix"
],
"lint": "parallel-lint . --exclude vendor --exclude node_modules",
"phpcs": "phpcs -ps --cache -d memory_limit=2G",
"phpcs-fix": "phpcbf",
"phpunit": "php ${MW_INSTALL_PATH:-../..}/tests/phpunit/phpunit.php -c phpunit.xml.dist",
"phpunit:unit": "@phpunit --testsuite=semantic-mediawiki-unit",
"phpunit:integration": "@phpunit --testsuite semantic-mediawiki-check,semantic-mediawiki-data-model,semantic-mediawiki-integration,semantic-mediawiki-import,semantic-mediawiki-structure",
"phpunit-coverage": "@phpunit --testdox --coverage-text --coverage-html coverage/php --coverage-clover coverage/php/coverage.xml",
"phpdbg": "phpdbg -qrr ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php -c phpunit.xml.dist",
"minus-x": "minus-x check .",
"benchmark": "composer phpunit -- --group semantic-mediawiki-benchmark",
"quick-benchmark": "php ${MW_INSTALL_PATH}/tests/phpunit/phpunit.php -c ./tests/phpunit/Benchmark/phpunit.quick.xml.dist --group semantic-mediawiki-benchmark"
}
}