forked from SemanticMediaWiki/SemanticMediaWiki
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
129 lines (129 loc) · 4.17 KB
/
composer.json
File metadata and controls
129 lines (129 loc) · 4.17 KB
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
{
"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": "jeroendedauw@gmail.com",
"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": "info@professional.wiki",
"homepage": "https://professional.wiki",
"role": "Developer"
}
],
"support": {
"email": "semediawiki-user@lists.sourceforge.net",
"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": ">=8.1",
"ext-mbstring": "*",
"composer/installers": "^2.2.0|^1.0.1",
"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": "48.0.0",
"mediawiki/mediawiki-phan-config": "0.20.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"
},
"suggest": {
"mediawiki/semantic-result-formats": "Provides additional result formats for queries of structured data"
},
"extra": {
"branch-alias": {
"dev-master": "7.x-dev"
}
},
"autoload": {
"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",
"phan": "phan -d . --long-progress-bar",
"phpcs": "phpcs -sp --cache --parallel=$(nproc || sysctl -n hw.logicalcpu || powershell \"Get-WmiObject Win32_Processor | Select-Object -ExpandProperty NumberOfCores .trim()\" || echo 4 )",
"phpcs-fix": "phpcbf",
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"cd ${MW_INSTALL_PATH:-../..} && MEDIAWIKI_HAS_INTEGRATION_TESTS=1 vendor/bin/phpunit -c extensions/SemanticMediaWiki/phpunit.xml.dist --bootstrap tests/phpunit/bootstrap.php"
],
"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-clover extensions/SemanticMediaWiki/coverage/php/coverage.xml",
"minus-x": "minus-x check .",
"benchmark": "composer phpunit -- --group semantic-mediawiki-benchmark",
"quick-benchmark": "cd ${MW_INSTALL_PATH:-../..} && MEDIAWIKI_HAS_INTEGRATION_TESTS=1 vendor/bin/phpunit -c extensions/SemanticMediaWiki/tests/phpunit/Benchmark/phpunit.quick.xml.dist --bootstrap tests/phpunit/bootstrap.php --group semantic-mediawiki-benchmark"
}
}