composer.json 1.1 KB

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