composer.json 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "topthink/think-queue",
  3. "description": "The ThinkPHP6 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. "require": {
  25. "ext-json": "*",
  26. "topthink/framework": "^6.0 || ^8.0",
  27. "symfony/process": ">=4.2",
  28. "nesbot/carbon": "^2.16"
  29. },
  30. "extra": {
  31. "think": {
  32. "services": [
  33. "think\\queue\\Service"
  34. ],
  35. "config": {
  36. "queue": "src/config.php"
  37. }
  38. }
  39. },
  40. "require-dev": {
  41. "phpunit/phpunit": "^6.2",
  42. "mockery/mockery": "^1.2",
  43. "topthink/think-migration": "^3.0"
  44. }
  45. }