summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: f8b5ade53674bf0ba79b0028f72134fbb721a5a3 (plain)
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
{
    "name": "phpmyadmin/shapefile",
    "description": "ESRI ShapeFile library for PHP",
    "license": "GPL-2.0+",
    "keywords": ["shapefile", "shp", "geo", "geospatial", "dbf", "ESRI", "shape"],
    "homepage": "https://github.com/phpmyadmin/shapefile",
    "authors": [
        {
            "name": "The phpMyAdmin Team",
            "email": "developers@phpmyadmin.net",
            "homepage": "https://www.phpmyadmin.net/team/"
        }
    ],
    "support": {
        "issues": "https://github.com/phpmyadmin/shapefile/issues",
        "source": "https://github.com/phpmyadmin/shapefile"
    },
    "require": {
        "php": ">=5.4.0"
    },
    "suggest": {
        "ext-dbase": "For dbf files parsing"
    },
    "require-dev": {
        "phpunit/phpunit": "~5.2 || ~4.8"
    },
    "autoload": {
        "psr-4": {
            "PhpMyAdmin\\ShapeFile\\": "src"
        }
    }
}