summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: b4968ec8ba92b68192d21a6171c33800b5cf1cf2 (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
33
{
    "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/php-code-coverage": "*",
        "phpunit/phpunit": "~4.8 || ~5.7"
    },
    "autoload": {
        "psr-4": {
            "PhpMyAdmin\\ShapeFile\\": "src"
        }
    }
}