composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "hyperf/testing",
  3. "description": "Testing for hyperf",
  4. "license": "MIT",
  5. "type": "library",
  6. "keywords": [
  7. "dev",
  8. "php",
  9. "swoole",
  10. "testing"
  11. ],
  12. "require": {
  13. "php": ">=8.1",
  14. "hyperf/codec": "~3.1.0",
  15. "hyperf/collection": "~3.1.0",
  16. "hyperf/context": "~3.1.0",
  17. "hyperf/contract": "~3.1.0",
  18. "hyperf/coordinator": "~3.1.0",
  19. "hyperf/coroutine": "~3.1.0",
  20. "hyperf/http-message": "~3.1.0",
  21. "hyperf/http-server": "~3.1.0",
  22. "hyperf/macroable": "~3.1.0",
  23. "hyperf/stringable": "~3.1.0",
  24. "hyperf/support": "~3.1.0",
  25. "phpunit/phpunit": "^10.0",
  26. "psr/container": "^1.0 || ^2.0",
  27. "symfony/http-foundation": "^5.4 || ^6.0"
  28. },
  29. "suggest": {
  30. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  31. },
  32. "autoload": {
  33. "psr-4": {
  34. "Hyperf\\Testing\\": "src/"
  35. }
  36. },
  37. "autoload-dev": {
  38. "psr-4": {
  39. "HyperfTest\\Testing\\": "tests/"
  40. }
  41. },
  42. "bin": [
  43. "co-phpunit"
  44. ],
  45. "extra": {
  46. "branch-alias": {
  47. "dev-master": "3.1-dev"
  48. }
  49. }
  50. }