composer.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "neoxygen/neoclient",
  3. "type": "library",
  4. "description": "NeoClient is the most advanced Http Client for Neo4j",
  5. "keywords": [
  6. "graph",
  7. "neo4j",
  8. "cluster",
  9. "client",
  10. "high-availibility"
  11. ],
  12. "homepage": "http://neoxygen.io",
  13. "license": "MIT",
  14. "authors": [
  15. {
  16. "name": "Christophe Willemsen",
  17. "email": "chris@neoxygen.io"
  18. }
  19. ],
  20. "require": {
  21. "php": "^5.5|^7.0",
  22. "guzzlehttp/guzzle": "^6.0",
  23. "monolog/monolog": "~1.1",
  24. "symfony/yaml": "^2.7",
  25. "symfony/config": "^2.7",
  26. "symfony/dependency-injection": "^2.7",
  27. "symfony/event-dispatcher": "^2.7",
  28. "graphaware/neo4j-response-formatter": "^1.0"
  29. },
  30. "require-dev": {
  31. "phpspec/phpspec": "~2.0",
  32. "phpunit/phpunit": "4.*",
  33. "bossa/phpspec2-expect": "*",
  34. "behat/behat": "~3.0"
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Neoxygen\\NeoClient\\": "src/"
  39. }
  40. },
  41. "autoload-dev": {
  42. "psr-4": {
  43. "Neoxygen\\NeoClient\\Tests\\": "tests/Neoxygen/NeoClient/Tests"
  44. }
  45. },
  46. "extra": {
  47. "branch-alias": {
  48. "dev-master": "3.1-dev"
  49. }
  50. }
  51. }