composer.json 1020 B

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