-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
79 lines (77 loc) · 1.83 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
72
73
74
75
76
77
78
79
{
"name": "jeroen/json-dump-reader",
"description": "Provides line-by-line readers and iterators for Wikibase/Wikidata JSON dumps",
"keywords": [
"Wikibase",
"Wikidata",
"Dump",
"JSON",
"bz2"
],
"homepage": "https://github.com/JeroenDeDauw/JsonDumpReader",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Jeroen De Dauw",
"homepage": "http://jeroendedauw.com"
}
],
"require": {
"php": ">=7.1",
"jeroen/rewindable-generator": "~1.1",
"wikibase/data-model-serialization": "~1.1|~2.0"
},
"require-dev": {
"phpunit/phpunit": "~7.3",
"jeroen/nyancat-phpunit-resultprinter": "~2.0",
"ockcyp/covers-validator": "~1.0",
"squizlabs/php_codesniffer": "~3.3",
"phpmd/phpmd": "~2.6",
"data-values/iri": "~0.1.0",
"data-values/number": "~0.10.0",
"data-values/geo": "~4.0|~3.0",
"data-values/time": "~1.0",
"jeroen/json-dump-data": "~1.0"
},
"suggest": {
"data-values/geo": "Needed when using the EntityDocument iterator to read geographical values",
"data-values/number": "Needed when using the EntityDocument iterator to read numerical values",
"data-values/time": "Needed when using the EntityDocument iterator to read time values",
"data-values/iri": "Needed when using the EntityDocument iterator to read IRI values"
},
"autoload": {
"psr-4": {
"Wikibase\\JsonDumpReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wikibase\\JsonDumpReader\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"test": [
"composer validate --no-interaction",
"vendor/bin/phpunit",
"vendor/bin/covers-validator"
],
"cs": [
"@phpcs"
],
"ci": [
"@test",
"@cs"
],
"phpcs": [
"vendor/bin/phpcs --standard=phpcs.xml --extensions=php -sp"
],
"phpmd": [
"vendor/bin/phpmd src/,tests/ text phpmd.xml"
]
}
}