composer.json 682 B

1234567891011121314151617181920212223242526272829303132
  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": ">=1.0.10"
  23. },
  24. "require-dev": {
  25. "topthink/framework": "~5.0.0"
  26. },
  27. "extra": {
  28. "think-config": {
  29. "queue": "src/config.php"
  30. }
  31. }
  32. }