-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 1.36 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
{
"name": "wikibase/internal-serialization",
"type": "library",
"description": "Serializers and deserializers for the data access layer of Wikibase Repository",
"keywords": [
"wikibase",
"DataModel",
"serializers",
"serialization",
"deserializers",
"wikidata"
],
"homepage": "https://github.com/wmde/WikibaseInternalSerialization",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "https://www.entropywins.wtf/"
},
{
"name": "The Wikidata team",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.libera.chat/wikidata"
},
"require": {
"php": "^7.4|^8.0",
"wikibase/data-model": "dev-master",
"wikibase/data-model-serialization": "dev-master",
"serialization/serialization": "~4.0|~3.2"
},
"require-dev": {
"phpmd/phpmd": "~2.3",
"phpunit/phpunit": "~8.0",
"wikibase/data-model-services": "dev-master",
"data-values/common": "~1.2",
"data-values/geo": "^4.5.1",
"data-values/number": "~0.13",
"data-values/time": "~1.2"
},
"autoload": {
"psr-4": {
"Wikibase\\InternalSerialization\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.10.x-dev"
}
},
"scripts": {
"test": [
"composer validate --no-interaction",
"@cs",
"phpunit"
],
"cs": [
"phpmd src/ text phpmd.xml"
],
"ci": [
"@test"
]
}
}