forked from phayes/geoPHP
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
56 lines (56 loc) · 1.31 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
{
"name": "phayes/geophp",
"license": "GPL-2 or New-BSD",
"type": "library",
"keywords": [
"Geo",
"GIS",
"Geography",
"Geometry",
"GEOS",
"GPX",
"WKT",
"EWKT",
"WKB",
"EWKB",
"KML",
"GeoJson",
"GeoRSS",
"GeoHash"
],
"description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.",
"homepage": "https://github.com/phayes/geoPHP",
"autoload": {
"psr-4": {
"GeoPHP\\": "lib/GeoPHP"
},
"files": [
"lib/autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"GeoPHP\\Tests\\": "tests"
}
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"ext-mbstring": "*"
},
"suggests": {
"ext-geos": "The GEOS extension",
"ext-mbstring": "For KML adapter"
},
"authors": [
{
"name": "Patrick Hayes"
}
],
"extra": {
"branch-alias": {
"dev-master": "1.3-dev"
}
}
}