composer.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "phpmyadmin/shapefile",
  3. "description": "ESRI ShapeFile library for PHP",
  4. "license": "GPL-2.0-or-later",
  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. "scripts": {
  19. "phpcbf": "@php phpcbf",
  20. "phpcs": "@php phpcs",
  21. "phpstan": "@php phpstan analyse",
  22. "phpunit": "@php phpunit --color=always",
  23. "test": [
  24. "@phpcs",
  25. "@phpstan",
  26. "@phpunit"
  27. ],
  28. "update:baselines": [
  29. "@php phpstan analyse --generate-baseline"
  30. ]
  31. },
  32. "require": {
  33. "php": "^7.1 || ^8.0"
  34. },
  35. "suggest": {
  36. "ext-dbase": "For dbf files parsing"
  37. },
  38. "require-dev": {
  39. "phpmyadmin/coding-standard": "^3.0.0",
  40. "phpstan/phpstan": "^1.4.10",
  41. "phpstan/phpstan-phpunit": "^1.0",
  42. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.3"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "PhpMyAdmin\\ShapeFile\\": "src"
  47. }
  48. },
  49. "autoload-dev": {
  50. "psr-4": {
  51. "PhpMyAdminTest\\ShapeFile\\": "tests"
  52. }
  53. },
  54. "config":{
  55. "sort-packages": true,
  56. "allow-plugins": {
  57. "dealerdirect/phpcodesniffer-composer-installer": true
  58. }
  59. }
  60. }