composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "fabiang/xmpp",
  3. "description": "Library for XMPP protocol (Jabber) connections",
  4. "license": "BSD-2-Clause",
  5. "homepage": "https://github.com/fabiang/xmpp",
  6. "keywords": ["jabber", "xmpp"],
  7. "authors": [
  8. {
  9. "name": "Fabian Grutschus",
  10. "email": "f.grutschus@lubyte.de",
  11. "homepage": "http://www.lubyte.de/",
  12. "role": "developer"
  13. }
  14. ],
  15. "autoload": {
  16. "psr-4": {
  17. "Fabiang\\Xmpp\\": "src/"
  18. }
  19. },
  20. "autoload-dev": {
  21. "files": [
  22. "vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
  23. ],
  24. "psr-4": {
  25. "Fabiang\\Xmpp\\": "tests/src/"
  26. }
  27. },
  28. "require": {
  29. "php": "^5.6 || ^7.0",
  30. "psr/log": "^1.0"
  31. },
  32. "require-dev": {
  33. "behat/behat": "^2.5.5",
  34. "monolog/monolog": "^1.22",
  35. "phpunit/phpunit": "^5.7.20",
  36. "satooshi/php-coveralls": "^1.0",
  37. "symfony/console": "^2.8",
  38. "symfony/dependency-injection": "^2.8",
  39. "symfony/finder": "^2.8"
  40. },
  41. "suggest": {
  42. "psr/log-implementation": "Allows more advanced logging of the xmpp connection"
  43. },
  44. "extra": {
  45. "branch-alias": {
  46. "dev-master": "1.0.x-dev"
  47. }
  48. },
  49. "config": {
  50. "platform": {
  51. "php": "5.6"
  52. },
  53. "sort-packages": true
  54. },
  55. "archive": {
  56. "exclude": [
  57. ".gitignore",
  58. ".gitattributes",
  59. ".scrutinizer.yml",
  60. ".travis.yml",
  61. "/tests",
  62. "/docs",
  63. "/bin",
  64. "/example.php"
  65. ]
  66. }
  67. }