composer.json 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "illuminate/broadcasting",
  3. "description": "The Illuminate Broadcasting package.",
  4. "license": "MIT",
  5. "homepage": "https://laravel.com",
  6. "support": {
  7. "issues": "https://github.com/laravel/framework/issues",
  8. "source": "https://github.com/laravel/framework"
  9. },
  10. "authors": [
  11. {
  12. "name": "Taylor Otwell",
  13. "email": "taylor@laravel.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^7.1.3",
  18. "psr/log": "~1.0",
  19. "illuminate/bus": "5.6.*",
  20. "illuminate/contracts": "5.6.*",
  21. "illuminate/queue": "5.6.*",
  22. "illuminate/support": "5.6.*"
  23. },
  24. "autoload": {
  25. "psr-4": {
  26. "Illuminate\\Broadcasting\\": ""
  27. }
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "5.6-dev"
  32. }
  33. },
  34. "suggest": {
  35. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~3.0)."
  36. },
  37. "config": {
  38. "sort-packages": true
  39. },
  40. "minimum-stability": "dev"
  41. }