diff options
author | Remi Collet <remi@remirepo.net> | 2021-02-08 07:53:20 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2021-02-08 07:53:20 +0100 |
commit | dea489a5941a5b561edd47ea750687ae4dc84e15 (patch) | |
tree | 53f1aa6dd57d842ed61543a841ec4d63a4be4976 /composer.json |
duplicate v2
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b4968ec --- /dev/null +++ b/composer.json @@ -0,0 +1,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" + } + } +} |