composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "topthink/think-queue",
  3. "description": "The ThinkPHP5 Queue Package",
  4. "authors": [
  5. {
  6. "name": "yunwuxin",
  7. "email": "448901948@qq.com"
  8. }
  9. ],
  10. "license": "Apache-2.0",
  11. "autoload": {
  12. "psr-4": {
  13. "think\\": "src"
  14. },
  15. "files": [
  16. "src/common.php"
  17. ]
  18. },
  19. "autoload-dev": {
  20. "psr-4": {
  21. "think\\test\\queue\\": "tests"
  22. }
  23. },
  24. "minimum-stability": "dev",
  25. "require": {
  26. "ext-json": "*",
  27. "topthink/think-helper": "^3.0.4",
  28. "topthink/framework": "^6.0.0",
  29. "topthink/think-factory": "^1.0.0",
  30. "symfony/process": "^4.2",
  31. "nesbot/carbon": "^2.16"
  32. },
  33. "extra": {
  34. "think": {
  35. "services": [
  36. "think\\queue\\Service"
  37. ],
  38. "config": {
  39. "queue": "src/config.php"
  40. }
  41. }
  42. },
  43. "require-dev": {
  44. "phpunit/phpunit": "^6.2",
  45. "mockery/mockery": "^1.2",
  46. "topthink/think-migration": "^3.0.0"
  47. }
  48. }