tp5.1框架 think-queue 队列
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

composer.json 701B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "topthink/think",
  3. "description": "the new thinkphp framework",
  4. "type": "project",
  5. "keywords": [
  6. "framework",
  7. "thinkphp",
  8. "ORM"
  9. ],
  10. "homepage": "http://thinkphp.cn/",
  11. "license": "Apache-2.0",
  12. "authors": [
  13. {
  14. "name": "liu21st",
  15. "email": "liu21st@gmail.com"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.6.0",
  20. "topthink/framework": "5.1.*",
  21. "topthink/think-queue": "2.0.4"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "app\\": "application"
  26. }
  27. },
  28. "extra": {
  29. "think-path": "thinkphp"
  30. },
  31. "config": {
  32. "preferred-install": "dist"
  33. }
  34. }