composer.json 998 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "mtdowling/jmespath.php",
  3. "description": "Declaratively specify how to extract elements from a JSON document",
  4. "keywords": ["json", "jsonpath"],
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Graham Campbell",
  9. "email": "hello@gjcampbell.co.uk",
  10. "homepage": "https://github.com/GrahamCampbell"
  11. },
  12. {
  13. "name": "Michael Dowling",
  14. "email": "mtdowling@gmail.com",
  15. "homepage": "https://github.com/mtdowling"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.2.5 || ^8.0",
  20. "symfony/polyfill-mbstring": "^1.17"
  21. },
  22. "require-dev": {
  23. "composer/xdebug-handler": "^3.0.3",
  24. "phpunit/phpunit": "^8.5.33"
  25. },
  26. "autoload": {
  27. "psr-4": {
  28. "JmesPath\\": "src/"
  29. },
  30. "files": ["src/JmesPath.php"]
  31. },
  32. "bin": ["bin/jp.php"],
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.7-dev"
  36. }
  37. }
  38. }