forked from DataValues/Common
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 1.31 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 1.31 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
{
"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+",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "jeroendedauw@gmail.com",
"homepage": "http://jeroendedauw.com",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.freenode.net/wikidata"
},
"require": {
"php": ">=5.5.9",
"data-values/data-values": "~1.0|~0.1",
"data-values/interfaces": "~0.2.0|~0.1.5"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"ockcyp/covers-validator": "~0.4",
"wikibase/wikibase-codesniffer": "^0.1.0"
},
"extra": {
"branch-alias": {
"dev-master": "0.3.x-dev"
}
},
"autoload": {
"files" : [
"Common.php"
],
"psr-4": {
"DataValues\\": "src/DataValues/",
"ValueFormatters\\": "src/ValueFormatters/",
"ValueParsers\\": "src/ValueParsers/"
},
"classmap": [
"tests/ValueParsers"
]
},
"scripts": {
"cs": [
"phpcs src/* tests/* --standard=phpcs.xml -sp"
],
"test": [
"composer validate --no-interaction",
"covers-validator",
"phpunit"
],
"ci": [
"@test",
"@cs"
]
}
}