forked from gasparesganga/php-shapefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 903 Bytes
/
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
{
"name": "movisio/php-shapefile",
"description": "PHP library to read and write ESRI Shapefiles, compatible with WKT and GeoJSON",
"type": "library",
"keywords": ["shapefile", "shape", "esri", "shp", "dbf", "wkt", "geojson"],
"homepage": "https://gasparesganga.com/labs/php-shapefile/",
"license": "MIT",
"authors": [
{
"name": "Gaspare Sganga",
"email": "[email protected]",
"homepage": "https://gasparesganga.com/labs/php-shapefile/",
"role": "Developer"
},
{
"name": "Movisio.com",
"email": "[email protected]",
"homepage": "https://www.movisio.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"autoload": {
"psr-4": {
"Shapefile\\": "src/Shapefile/"
}
}
}