This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
86 lines (86 loc) · 2.32 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
{
"name": "wikibase/wikibase",
"type": "mediawiki-extension",
"description": "Structured data repository for MediaWiki",
"keywords": [
"wikibase",
"wikidata",
"wikibaselib",
"wikibaseclient",
"wikibaserepo"
],
"homepage": "http://wikiba.se",
"license": "GPL-2.0+",
"authors": [
{
"name": "The Wikidata team"
}
],
"support": {
"issues": "https://phabricator.wikimedia.org/",
"irc": "irc://irc.freenode.net/wikidata"
},
"require": {
"php": ">=5.5.0",
"data-values/data-values": "^1.0.0",
"data-values/common": "^0.3.0",
"data-values/geo": "^1.2.1",
"data-values/interfaces": "^0.2.0|^0.1.5",
"data-values/number": "^0.8.2",
"data-values/time": "^0.8.4",
"data-values/validators": "^0.1.0",
"data-values/data-types": "^1.0.0",
"data-values/serialization": "^1.1.0",
"data-values/javascript": "^0.8.3",
"data-values/value-view": "^0.18.0",
"wikibase/data-model": "^6.3.1",
"wikibase/data-model-serialization": "^2.1.0",
"wikibase/internal-serialization": "^2.2.0",
"wikibase/data-model-services": "^3.7.0",
"wikibase/data-model-javascript": "^3.0.1",
"wikibase/javascript-api": "^2.2.0",
"wikibase/serialization-javascript": "^2.0.8",
"diff/diff": "^2.0.0",
"wikimedia/purtle": "^1.0.3"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9.2",
"mediawiki/mediawiki-codesniffer": "0.4.0|0.5.0"
},
"conflict": {
"mediawiki/mediawiki": "<1.25"
},
"autoload": {
"classmap": [
"client/includes/",
"client/WikibaseClient.hooks.php",
"client/tests/phpunit/MockClientStore.php",
"lib/includes/",
"lib/WikibaseLib.hooks.php",
"lib/maintenance/",
"repo/includes/",
"repo/maintenance/",
"repo/Wikibase.hooks.php"
],
"psr-4": {
"Wikibase\\Client\\": "client/includes",
"Wikibase\\Client\\Tests\\": "client/tests/phpunit/includes",
"Wikibase\\Lib\\": "lib/includes",
"Wikibase\\Lib\\Tests\\": "lib/tests/phpunit",
"Wikibase\\Repo\\": "repo/includes",
"Wikibase\\Repo\\Tests\\": "repo/tests/phpunit/includes",
"Wikibase\\View\\": "view/src",
"Wikibase\\View\\Tests\\": "view/tests/phpunit"
}
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor",
"composer cs"
],
"cs": [
"composer phpcs"
],
"phpcs": "vendor/bin/phpcs -sp --standard=phpcs.xml --extensions=php --ignore=extensions/ValueView,vendor,.git ."
}
}