composer.json 617 B

12345678910111213141516171819202122232425262728
  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. "app/lib",
  15. "app/logic",
  16. "app/logic/cmdpro"
  17. ],
  18. "psr-4": {
  19. "app\\": "app/"
  20. }
  21. },
  22. "repositories": {
  23. "packagist": {
  24. "type": "composer",
  25. "url": "https://packagist.laravel-china.org"
  26. }
  27. }
  28. }