-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
87 lines (87 loc) · 1.79 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
80
81
82
83
84
85
86
87
{
"name": "data-values/geo",
"type": "library",
"description": "Geographical value objects, parsers and formatters",
"keywords": [
"datavalues",
"parsers",
"formatters",
"wikidata",
"geo",
"geographical",
"latlong",
"coordinate",
"coordinates",
"DMS",
"degrees",
"minutes",
"seconds",
"latitude",
"longitude"
],
"homepage": "https://github.com/DataValues/Geo",
"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": {
"issues": "https://github.com/DataValues/Geo/issues",
"docs": "https://github.com/DataValues/Geo/#usage"
},
"require": {
"php": ">=7.3",
"data-values/data-values": "^3.0|^2.0|^1.0|~0.1",
"data-values/interfaces": "^1.0.0|^0.2.0",
"symfony/polyfill-php80": "^1.18.1"
},
"require-dev": {
"phpunit/phpunit": "^9.4.1",
"mediawiki/mediawiki-codesniffer": "^34 || ^35 || ^36 || ^38",
"ockcyp/covers-validator": "^1.3.3",
"phpstan/phpstan": "^0.12.68 || ^1.0.0",
"phpmd/phpmd": "^2.9.1",
"vimeo/psalm": "^4.4.1",
"maglnet/composer-require-checker": "^3.0|^2.0"
},
"autoload": {
"psr-4": {
"DataValues\\Geo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\DataValues\\Geo\\": "tests/unit"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"scripts": {
"test": [
"composer validate --no-interaction",
"vendor/bin/phpunit",
"vendor/bin/covers-validator"
],
"cs": [
"vendor/bin/phpcs -p -s",
"vendor/bin/phpstan analyse --level=1 --no-progress src/ tests/",
"vendor/bin/phpmd src/ text phpmd.xml",
"vendor/bin/psalm --show-info=false"
],
"ci": [
"@test",
"@cs"
]
}
}