截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "topthink/think-swoole",
  3. "description": "Swoole extend for thinkphp",
  4. "license": "Apache-2.0",
  5. "authors": [
  6. {
  7. "name": "liu21st",
  8. "email": "liu21st@gmail.com"
  9. }
  10. ],
  11. "require": {
  12. "php": ">7.1",
  13. "ext-json": "*",
  14. "ext-swoole": ">=4.4.8",
  15. "nette/php-generator": "^3.2",
  16. "open-smf/connection-pool": "~1.0",
  17. "stechstudio/backoff": "^1.2",
  18. "swoole/ide-helper": "^4.3",
  19. "symfony/finder": "^4.3.2|^5.1",
  20. "topthink/framework": "^6.0"
  21. },
  22. "require-dev": {
  23. "symfony/var-dumper": "^4.3|^5.1",
  24. "topthink/think-tracing": "^1.0",
  25. "topthink/think-queue": "^3.0"
  26. },
  27. "autoload": {
  28. "psr-4": {
  29. "think\\swoole\\": "src"
  30. },
  31. "files": [
  32. "src/helpers.php"
  33. ]
  34. },
  35. "extra": {
  36. "think": {
  37. "services": [
  38. "think\\swoole\\Service"
  39. ],
  40. "config": {
  41. "swoole": "src/config/swoole.php"
  42. }
  43. }
  44. },
  45. "config": {
  46. "preferred-install": "dist",
  47. "sort-packages": true,
  48. "platform-check": false,
  49. "platform": {
  50. "ext-swoole": "4.4.8",
  51. "ext-fileinfo": "1.0.4"
  52. }
  53. }
  54. }