composer.json 863 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "pusher/pusher-php-server",
  3. "description" : "Library for interacting with the Pusher REST API",
  4. "keywords": ["php-pusher-server", "pusher", "rest", "realtime", "real-time", "real time", "messaging", "push", "trigger", "publish", "events"],
  5. "license": "MIT",
  6. "require": {
  7. "php": "^7.1|^8.0",
  8. "ext-curl": "*",
  9. "psr/log": "^1.0",
  10. "paragonie/sodium_compat": "^1.6"
  11. },
  12. "require-dev": {
  13. "phpunit/phpunit": "^7.2|^8.5|^9.3"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Pusher\\": "src/"
  18. }
  19. },
  20. "autoload-dev": {
  21. "psr-4": { "": "tests/" }
  22. },
  23. "config": {
  24. "preferred-install": "dist"
  25. },
  26. "extra": {
  27. "branch-alias": {
  28. "dev-master": "3.4-dev"
  29. }
  30. },
  31. "minimum-stability": "dev",
  32. "prefer-stable": true
  33. }