-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.33 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
{
"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.0|^8.0",
"wikibase/data-model": "~9.0|~8.0",
"wikibase/data-model-serialization": "~2.0",
"serialization/serialization": "~4.0|~3.2"
},
"require-dev": {
"phpmd/phpmd": "~2.3",
"phpunit/phpunit": "~8.0",
"data-values/common": ">=0.1 <0.5",
"data-values/geo": ">=1.0 <4.0",
"data-values/number": ">=0.1 <0.10",
"data-values/time": ">=0.1 <0.9"
},
"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"
]
}
}