composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "diogocomposer/xmpphp",
  3. "description": "XMPP PHP Library",
  4. "type": "library",
  5. "keywords": ["jabber", "xmpphp", "xmpp"],
  6. "license": "GPL-2.0+",
  7. "authors": [
  8. {
  9. "name": "Nathan Fritz",
  10. "email": "fritzy@netflint.net"
  11. },
  12. {
  13. "name": "Stephan Wentz",
  14. "email": "stephan@wentz.it"
  15. },
  16. {
  17. "name": "Christian Weiske",
  18. "email": "cweiske@cweiske.de"
  19. },
  20. {
  21. "name": "Vito Tafuni",
  22. "email": "vitotafuni@gmail.com"
  23. },
  24. {
  25. "name": "Ivan Borzenkov",
  26. "email": "ivan.borzenkov@gmail.com"
  27. },
  28. {
  29. "name": "bandroidx",
  30. "email": "bandroidx@gmail.com"
  31. },
  32. {
  33. "name": "BirknerAlex",
  34. "email": "alex.birkner@gmail.com"
  35. },
  36. {
  37. "name": "Diogo Cordeiro",
  38. "email": "diogo@fc.up.pt"
  39. }
  40. ],
  41. "autoload": {
  42. "psr-4": { "XMPPHP\\": "XMPPHP" }
  43. },
  44. "require": {
  45. "php": ">=7.0.0",
  46. "ext-mbstring": "*",
  47. "ext-xml": "*"
  48. }
  49. }