composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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.4",
  13. "ext-json": "*",
  14. "ext-swoole": ">=4.6",
  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. "phpunit/phpunit": "^9.5"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "think\\swoole\\": "src"
  31. },
  32. "files": [
  33. "src/helpers.php"
  34. ]
  35. },
  36. "autoload-dev": {
  37. "psr-4": {
  38. "think\\tests\\swoole\\": "tests/"
  39. }
  40. },
  41. "extra": {
  42. "think": {
  43. "services": [
  44. "think\\swoole\\Service"
  45. ],
  46. "config": {
  47. "swoole": "src/config/swoole.php"
  48. }
  49. }
  50. },
  51. "config": {
  52. "preferred-install": "dist",
  53. "sort-packages": true,
  54. "platform-check": false,
  55. "platform": {
  56. "ext-swoole": "4.6.1",
  57. "ext-fileinfo": "1.0.4"
  58. }
  59. }
  60. }