composer.json 665 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "swoole/servers",
  3. "description": "swoole user ORM",
  4. "keywords": ["swole", "ROM"],
  5. "license": "MIT",
  6. "type": "project",
  7. "require": {
  8. "php": ">=7.0.0",
  9. "illuminate/database": "*",
  10. "textalk/websocket":"1.2.*"
  11. },
  12. "autoload": {
  13. "classmap": [
  14. "datainf/lib",
  15. "datainf/logic",
  16. "datainf/logic/cmdpro"
  17. ],
  18. "psr-4": {
  19. "App\\": "app/",
  20. "datainf\\":"datainf/"
  21. }
  22. },
  23. "repositories": {
  24. "packagist": {
  25. "type": "composer",
  26. "url": "https://packagist.laravel-china.org"
  27. }
  28. }
  29. }