-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
54 lines (54 loc) · 1.02 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
{
"name": "data-values/validators",
"type": "library",
"description": "Common ValueValidator implementations",
"keywords": [
"datavalues",
"wikidata",
"validators",
"validation"
],
"homepage": "https://github.com/DataValues/Validators",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"email": "[email protected]",
"homepage": "http://jeroendedauw.com",
"role": "Developer"
},
{
"name": "The Wikidata team",
"role": "Developer"
}
],
"support": {
"irc": "irc://irc.freenode.net/wikidata"
},
"require": {
"php": ">=7.2",
"data-values/data-values": "^3.0.0|^2.1.1|~1.0|~0.1",
"data-values/interfaces": "^1.0.0|~0.2.0|~0.1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"mediawiki/mediawiki-codesniffer": "^34"
},
"autoload": {
"psr-4": {
"ValueValidators\\": "src"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.1.x-dev"
}
},
"scripts": {
"test": [
"composer validate --no-interaction",
"phpcs -p -s",
"phpunit"
]
}
}