-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.25 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.25 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
{
"name": "wikibase/data-model-services",
"type": "library",
"description": "Services around the Wikibase DataModel",
"keywords": [
"Wikibase",
"DataModel",
"Wikidata"
],
"homepage": "https://github.com/wmde/WikibaseDataModelServices",
"license": "GPL-2.0+",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "jeroendedauw@gmail.com",
"homepage": "http://jeroendedauw.com"
}
],
"support": {
"irc": "irc://irc.freenode.net/wikidata"
},
"require": {
"php": ">=5.5.0",
"wikibase/data-model": "~7.0|~6.3",
"data-values/data-values": "~0.1|~1.0",
"diff/diff": "~2.0|~1.0",
"wikimedia/assert": "~0.2.2"
},
"require-dev": {
"mediawiki/mediawiki-codesniffer": "~0.7",
"phpmd/phpmd": "~2.3",
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-4": {
"Wikibase\\DataModel\\Services\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.8.x-dev"
}
},
"scripts": {
"test": [
"@validate --no-interaction",
"vendor/bin/phpunit --coverage-php /dev/null"
],
"cs": [
"@phpcs",
"@phpmd"
],
"ci": [
"@test",
"@cs"
],
"phpcs": [
"vendor/bin/phpcs src/* tests/* --standard=phpcs.xml --extensions=php -sp"
],
"phpmd": [
"vendor/bin/phpmd src/,tests/unit/ text phpmd.xml"
]
}
}