composer.json 800 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "hyperf/testing",
  3. "type": "library",
  4. "license": "MIT",
  5. "keywords": [
  6. "php",
  7. "swoole",
  8. "testing"
  9. ],
  10. "description": "Testing for hyperf",
  11. "autoload": {
  12. "psr-4": {
  13. "Hyperf\\Testing\\": "src/"
  14. }
  15. },
  16. "autoload-dev": {
  17. "psr-4": {
  18. "HyperfTest\\Testing\\": "tests/"
  19. }
  20. },
  21. "require": {
  22. "php": ">=7.2",
  23. "psr/container": "^1.0|^2.0",
  24. "phpunit/phpunit": "^9.5",
  25. "hyperf/contract": "~2.2.0",
  26. "hyperf/http-message": "~2.2.0",
  27. "hyperf/http-server": "~2.2.0",
  28. "hyperf/utils": "~2.2.0"
  29. },
  30. "extra": {
  31. "branch-alias": {
  32. "dev-master": "2.2-dev"
  33. }
  34. },
  35. "bin": [
  36. "co-phpunit"
  37. ]
  38. }