forked from swen100/geoPHP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.3 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
{
"name": "swen100/geophp",
"license": "GPL-3.0-or-later",
"type": "library",
"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/swen100/geoPHP",
"authors":[
{
"name": "Patrick Hayes",
"homepage": "https://github.com/Patrick-Hayes",
"role": "Developer"
},
{
"name": "Báthory Péter",
"homepage": "https://github.com/BathoryPeter",
"role": "Developer"
},
{
"name": "Swen Zanon",
"homepage": "https://github.com/swen100",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"satooshi/php-coveralls": "1.*"
},
"autoload": {
"psr-4": {
"geoPHP\\": "src/"
}
}
}