composer.json 650 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "topthink/think-queue",
  3. "description": "The ThinkPHP5 Queue Package",
  4. "type": "think-extend",
  5. "authors": [
  6. {
  7. "name": "yunwuxin",
  8. "email": "448901948@qq.com"
  9. }
  10. ],
  11. "license": "Apache-2.0",
  12. "autoload": {
  13. "psr-4": {
  14. "think\\": "src"
  15. },
  16. "files": [
  17. "src/common.php"
  18. ]
  19. },
  20. "require": {
  21. "topthink/think-helper": ">=1.0.4",
  22. "topthink/think-installer": "^2.0",
  23. "topthink/framework": "5.1.*"
  24. },
  25. "extra": {
  26. "think-config": {
  27. "queue": "src/config.php"
  28. }
  29. }
  30. }