composer.json 938 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "phpmyadmin/shapefile",
  3. "description": "ESRI ShapeFile library for PHP",
  4. "license": "GPL-2.0+",
  5. "keywords": ["shapefile", "shp", "geo", "geospatial", "dbf", "ESRI", "shape"],
  6. "homepage": "https://github.com/phpmyadmin/shapefile",
  7. "authors": [
  8. {
  9. "name": "The phpMyAdmin Team",
  10. "email": "developers@phpmyadmin.net",
  11. "homepage": "https://www.phpmyadmin.net/team/"
  12. }
  13. ],
  14. "support": {
  15. "issues": "https://github.com/phpmyadmin/shapefile/issues",
  16. "source": "https://github.com/phpmyadmin/shapefile"
  17. },
  18. "require": {
  19. "php": ">=5.4.0"
  20. },
  21. "suggest": {
  22. "ext-dbase": "For dbf files parsing"
  23. },
  24. "require-dev": {
  25. "phpunit/php-code-coverage": "*",
  26. "phpunit/phpunit": "~4.8 || ~5.7"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "PhpMyAdmin\\ShapeFile\\": "src"
  31. }
  32. }
  33. }