forked from laravie/geotools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.22 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.22 KB
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
{
"name": "pyrexx/geotools",
"type": "library",
"description": "Geo-related tools PHP 8+ library",
"keywords": ["geotools", "geometry", "geoip", "bounds", "distance", "geohash", "latlong", "latitude", "longitude"],
"license": "MIT",
"support": {
"issues": "https://github.com/Pyrexx/geotools/issues",
"source": "https://github.com/Pyrexx/geotools"
},
"authors": [
{
"name": "Antoine Corcy",
"email": "contact@sbin.dk",
"homepage": "http://sbin.dk",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"League\\Geotools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"League\\Geotools\\Tests\\": "tests"
}
},
"require": {
"php": "^7.3 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4 || ^9.3.3",
"willdurand/geocoder": "^4.0"
},
"conflict": {
"league/geotools": "*"
},
"replace": {
"toin0u/geotools": "*"
},
"extra": {
"branch-alias": {
"dev-master": "1.2-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev"
}