composer.json 527 B

123456789101112131415161718192021222324
  1. {
  2. "name": "hipchat/hipchat-php",
  3. "type": "library",
  4. "description": "PHP library for HipChat",
  5. "keywords": ["hipchat"],
  6. "homepage": "http://github.com/hipchat/hipchat-php",
  7. "license": "MIT",
  8. "require": {
  9. "php": ">=5.3.0"
  10. },
  11. "autoload": {
  12. "psr-0": {
  13. "HipChat": "src"
  14. }
  15. },
  16. "authors": [
  17. {
  18. "name": "HipChat",
  19. "email": "support@hipchat.com",
  20. "homepage": "https://www.hipchat.com",
  21. "role": "Company"
  22. }
  23. ]
  24. }