composer.json 640 B

12345678910111213141516171819202122232425262728293031323334353637
  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": "Michael Dowling",
  9. "email": "mtdowling@gmail.com",
  10. "homepage": "https://github.com/mtdowling"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.4.0"
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "~4.0"
  18. },
  19. "autoload": {
  20. "psr-4": {
  21. "JmesPath\\": "src/"
  22. },
  23. "files": ["src/JmesPath.php"]
  24. },
  25. "bin": ["bin/jp.php"],
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "2.0-dev"
  29. }
  30. }
  31. }