-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
composer.json
77 lines (77 loc) · 1.89 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
{
"name": "mjaschen/phpgeo",
"description": "Simple Yet Powerful Geo Library",
"keywords": [
"distance",
"area",
"coordinate",
"geo",
"gis",
"bounds",
"ellipsoid",
"calculation",
"polyline",
"polygon",
"geofence",
"simplify",
"length",
"vincenty",
"haversine",
"bearing",
"projection",
"gps",
"earth",
"track",
"point",
"perpendicular"
],
"homepage": "https://phpgeo.marcusjaschen.de/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Marcus Jaschen",
"email": "mjaschen@gmail.com",
"homepage": "https://www.marcusjaschen.de/"
}
],
"readme": "README.md",
"support" : {
"issues" : "https://github.com/mjaschen/phpgeo/issues",
"docs": "https://phpgeo.marcusjaschen.de/Installation.html",
"email" : "mjaschen@gmail.com"
},
"require": {
"php": "^8.1"
},
"autoload": {
"psr-4": {
"Location\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"vimeo/psalm": "^5.0",
"squizlabs/php_codesniffer": "^3.7"
},
"scripts": {
"ci:composer-validate": "composer validate --no-check-all --no-check-lock --strict",
"ci:lint": "find src tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:psalm": "./vendor/bin/psalm",
"ci:sniff": "./vendor/bin/phpcs src tests",
"ci:tests": "./vendor/bin/phpunit tests/",
"ci:static": [
"@ci:composer-validate",
"@ci:lint",
"@ci:psalm",
"@ci:sniff"
],
"ci:dynamic": [
"@ci:tests"
],
"ci": [
"@ci:static",
"@ci:dynamic"
]
}
}