-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
71 lines (71 loc) · 1.26 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
{
"name": "wikibase/data-model",
"type": "library",
"description": "PHP implementation of the Wikibase DataModel",
"keywords": [
"Wikibase",
"DataModel",
"Wikidata"
],
"homepage": "https://github.com/wmde/WikibaseDataModel",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "http://jeroendedauw.com"
},
{
"name": "Thiemo Kreuz"
},
{
"name": "The Wikidata team",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.libera.chat/wikidata"
},
"require": {
"php": "^8.0|^7.4",
"data-values/data-values": "^3.1.0",
"wikimedia/assert": "~0.2.2|~0.3.0|~0.4.0|~0.5.0"
},
"require-dev": {
"ockcyp/covers-validator": "~1.1",
"phpmd/phpmd": "~2.6",
"phpunit/phpunit": "~8.0"
},
"autoload": {
"psr-4": {
"Wikibase\\DataModel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wikibase\\DataModel\\Fixtures\\": "tests/fixtures",
"Wikibase\\DataModel\\Tests\\": [
"tests/unit"
]
}
},
"extra": {
"branch-alias": {
"dev-master": "9.6.x-dev"
}
},
"scripts": {
"test": [
"composer validate --no-interaction",
"@cs",
"phpunit",
"covers-validator"
],
"cs": [
"phpmd src/ text phpmd.xml"
],
"ci": [
"@test"
]
}
}