composer.json 524 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "bigxia/ok-v5",
  3. "description": "This is an api sdk about OKEx V5",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "Heng Liu",
  9. "email": "ai747957633@qq.com"
  10. }
  11. ],
  12. "require": {
  13. "workerman/workerman": "^3.5",
  14. "phpunit/phpunit": "^8.4"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "okv5\\" : "src",
  19. "test\\" : "test"
  20. },
  21. "files": [
  22. "src/Websocket.php"
  23. ]
  24. }
  25. }