composer.json 928 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "open-smf/connection-pool",
  3. "type": "library",
  4. "license": "MIT",
  5. "support": {
  6. "issues": "https://github.com/open-smf/connection-pool/issues",
  7. "source": "https://github.com/open-smf/connection-pool"
  8. },
  9. "description": "A common connection pool based on Swoole is usually used as the database connection pool.",
  10. "keywords": [
  11. "swoole",
  12. "connection-pool",
  13. "database-connection-pool"
  14. ],
  15. "homepage": "https://github.com/open-smf/connection-pool",
  16. "authors": [
  17. {
  18. "name": "Xie Biao",
  19. "email": "hhxsv5@sina.com"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=7.0.0",
  24. "ext-json": "*",
  25. "ext-swoole": ">=4.2.9"
  26. },
  27. "suggest": {
  28. "ext-redis": "A PHP extension for Redis."
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Smf\\ConnectionPool\\": "src"
  33. }
  34. },
  35. "prefer-stable": true,
  36. "minimum-stability": "dev",
  37. "require-dev": {
  38. "swoole/ide-helper": "@dev"
  39. }
  40. }