composer.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "illuminate/queue",
  3. "description": "The Illuminate Queue 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. "illuminate/console": "5.6.*",
  19. "illuminate/container": "5.6.*",
  20. "illuminate/contracts": "5.6.*",
  21. "illuminate/database": "5.6.*",
  22. "illuminate/filesystem": "5.6.*",
  23. "illuminate/support": "5.6.*",
  24. "symfony/debug": "~4.0",
  25. "symfony/process": "~4.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "Illuminate\\Queue\\": ""
  30. }
  31. },
  32. "extra": {
  33. "branch-alias": {
  34. "dev-master": "5.6-dev"
  35. }
  36. },
  37. "suggest": {
  38. "ext-pcntl": "Required to use all features of the queue worker.",
  39. "ext-posix": "Required to use all features of the queue worker.",
  40. "aws/aws-sdk-php": "Required to use the SQS queue driver (~3.0).",
  41. "illuminate/redis": "Required to use the Redis queue driver (5.6.*).",
  42. "pda/pheanstalk": "Required to use the Beanstalk queue driver (~3.0)."
  43. },
  44. "config": {
  45. "sort-packages": true
  46. },
  47. "minimum-stability": "dev"
  48. }