forked from mjaschen/phpgeo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 loc) · 1.76 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
{
"name": "mjaschen/phpgeo",
"description": "Simple Geo Library",
"keywords": [
"distance",
"area",
"coordinate",
"geo",
"gis",
"bounds",
"ellipsoid",
"calculation",
"polyline",
"polygon",
"geofence",
"simplify",
"length",
"vincenty",
"haversine",
"bearing",
"projection",
"gps",
"earth",
"track",
"point"
],
"homepage": "https://phpgeo.marcusjaschen.de/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcus Jaschen",
"email": "mjaschen@gmail.com",
"homepage": "https://www.marcusjaschen.de/"
}
],
"support" : {
"email" : "mjaschen@gmail.com"
},
"require": {
"php": ">=7.0"
},
"autoload": {
"psr-4": {
"Location\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"squizlabs/php_codesniffer": "^3.2",
"phpmd/phpmd": "^2.6",
"vimeo/psalm": "~3.0"
},
"scripts": {
"ci:lint": "./vendor/bin/parallel-lint src",
"ci:psalm": "./vendor/bin/psalm",
"ci:sniff": "./vendor/bin/phpcs src tests",
"ci:coding-standards": "./vendor/bin/phpmd src text cleancode,codesize,design,naming,unusedcode || true",
"ci:tests": "./vendor/bin/phpunit tests/",
"ci:static": [
"@ci:lint",
"@ci:psalm",
"@ci:sniff",
"@ci:coding-standards"
],
"ci:dynamic": [
"@ci:tests"
],
"ci": [
"@ci:static",
"@ci:dynamic"
]
}
}