composer.json 886 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "nexmo/client",
  3. "description": "PHP Client for using Nexmo's API.",
  4. "license": "MIT",
  5. "type": "library",
  6. "authors": [
  7. {
  8. "name": "Tim Lytle",
  9. "email": "tim@nexmo.com",
  10. "role": "Developer",
  11. "homepage": "http://twitter.com/tjlytle"
  12. }
  13. ],
  14. "support": {
  15. "email": "devrel@nexmo.com"
  16. },
  17. "require": {
  18. "php": ">=5.6",
  19. "php-http/client-implementation": "^1.0",
  20. "zendframework/zend-diactoros": "^1.3",
  21. "php-http/guzzle6-adapter": "^1.0",
  22. "lcobucci/jwt": "^3.2"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "^5.7",
  26. "php-http/mock-client": "^0.3.0",
  27. "estahn/phpunit-json-assertions": "^1.0.0",
  28. "squizlabs/php_codesniffer": "^3.1"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Nexmo\\": "src/"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Nexmo\\": "test/",
  38. "NexmoTest\\": "test/"
  39. }
  40. }
  41. }