composer.json 623 B

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