composer.json 1.1 KB

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