-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
71 lines (71 loc) · 1.44 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": "data-values/common",
"type": "library",
"description": "Contains common implementations of the interfaces defined by DataValuesInterfaces",
"keywords": [
"datavalues",
"valueparsers",
"valueformatters",
"valuevalidators",
"wikidata"
],
"homepage": "https://github.com/DataValues/Common",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "jeroendedauw@gmail.com",
"homepage": "http://jeroendedauw.com",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.freenode.net/wikidata"
},
"require": {
"php": ">=7.2.0",
"data-values/data-values": "~3.0|~2.0|~1.0|~0.1",
"data-values/interfaces": "~1.0|~0.2.0"
},
"require-dev": {
"phpunit/phpunit": "~8.0",
"ockcyp/covers-validator": "^1.3.3",
"mediawiki/mediawiki-codesniffer": "^34"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"DataValues\\": "src/DataValues/",
"ValueFormatters\\": "src/ValueFormatters/",
"ValueParsers\\": "src/ValueParsers/"
}
},
"autoload-dev": {
"psr-4": {
"DataValues\\Tests\\": "tests/DataValues/",
"ValueFormatters\\Tests\\": "tests/ValueFormatters/",
"ValueParsers\\Tests\\": "tests/ValueParsers/"
}
},
"scripts": {
"fix": [
"phpcbf"
],
"cs": [
"phpcs -p -s"
],
"test": [
"composer validate --no-interaction",
"covers-validator",
"vendor/bin/phpunit"
],
"ci": [
"@cs",
"@test"
]
}
}