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