composer.json 705 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "graphaware/neo4j-response-formatter",
  3. "description": "Response Formatter for NeoClient",
  4. "type": "library",
  5. "require": {
  6. "psr/http-message": "^1.0"
  7. },
  8. "require-dev": {
  9. "phpunit/phpunit": "^4.7",
  10. "neoxygen/neoclient": "^3.2",
  11. "phpspec/prophecy": "^1.4"
  12. },
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Christophe Willemsen",
  17. "email": "christophe@graphaware.com"
  18. }
  19. ],
  20. "autoload": {
  21. "psr-4": {
  22. "GraphAware\\NeoClient\\Formatter\\": "src/"
  23. }
  24. },
  25. "autoload-dev": {
  26. "psr-4": {
  27. "GraphAware\\NeoClient\\Formatter\\Tests\\": "tests/"
  28. }
  29. }
  30. }