composer.json 539 B

123456789101112131415161718192021222324
  1. {
  2. "name": "flow/jsonpath",
  3. "description": "JSONPath implementation for parsing, searching and flattening arrays",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "Stephen Frank",
  8. "email": "stephen@flowsa.com"
  9. }
  10. ],
  11. "autoload": {
  12. "psr-0": {
  13. "Flow\\JSONPath": "src/",
  14. "Flow\\JSONPath\\Test": "tests/"
  15. }
  16. },
  17. "require": {
  18. "php": ">=5.4.0"
  19. },
  20. "require-dev": {
  21. "peekmo/jsonpath": "dev-master",
  22. "phpunit/phpunit": "^4.0"
  23. }
  24. }