-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathcomposer.json
More file actions
70 lines (70 loc) · 1.27 KB
/
composer.json
File metadata and controls
70 lines (70 loc) · 1.27 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
{
"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+",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "jeroendedauw@gmail.com",
"homepage": "http://jeroendedauw.com"
},
{
"name": "Thiemo Mättig"
}
],
"support": {
"irc": "irc://irc.freenode.net/wikidata"
},
"require": {
"php": ">=5.5.0",
"data-values/data-values": "~0.1|~1.0",
"wikimedia/assert": "~0.2.2"
},
"require-dev": {
"ockcyp/covers-validator": "~0.4.0",
"phpmd/phpmd": "~2.3",
"phpunit/phpunit": "~4.8",
"squizlabs/php_codesniffer": "~2.3"
},
"autoload": {
"files" : [
"WikibaseDataModel.php"
],
"psr-4": {
"Wikibase\\DataModel\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "7.0.x-dev"
}
},
"scripts": {
"test": [
"@validate --no-interaction",
"vendor/bin/phpunit",
"vendor/bin/covers-validator"
],
"cs": [
"@phpcs",
"@phpmd"
],
"ci": [
"@test",
"@cs"
],
"phpcs": [
"vendor/bin/phpcs src/* tests/* --standard=phpcs.xml --extensions=php -sp"
],
"phpmd": [
"vendor/bin/phpmd src/ text phpmd.xml"
]
}
}