composer.json 429 B

1234567891011121314151617181920212223
  1. {
  2. "name": "maniac/easemob-php",
  3. "description": "PHP Server SDK for IM.",
  4. "license": "MIT",
  5. "authors": [
  6. {
  7. "name": "maniac",
  8. "email": "maniac.liu@easemob.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">=5.3.3"
  13. },
  14. "autoload": {
  15. "files": [
  16. "src/functions.php"
  17. ],
  18. "psr-4": {
  19. "Easemob\\": "src/",
  20. "tests\\": "tests/"
  21. }
  22. }
  23. }