composer.json 659 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "workerman/coroutine",
  3. "type": "library",
  4. "license": "MIT",
  5. "description": "Workerman coroutine",
  6. "require": {
  7. "php": ">=8.1",
  8. "workerman/workerman": "^5.1"
  9. },
  10. "autoload": {
  11. "psr-4": {
  12. "Workerman\\Coroutine\\": "src",
  13. "Workerman\\": "src"
  14. }
  15. },
  16. "require-dev": {
  17. "phpunit/phpunit": "^11.0",
  18. "psr/log": "*"
  19. },
  20. "autoload-dev": {
  21. "psr-4": {
  22. "Workerman\\Coroutine\\": "src",
  23. "Workerman\\": "src",
  24. "tests\\": "tests"
  25. }
  26. },
  27. "scripts": {
  28. "test": "php tests/start.php start"
  29. },
  30. "minimum-stability": "dev",
  31. "prefer-stable": true
  32. }