composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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/contract": "~3.1.0",
  17. "hyperf/coroutine": "~3.1.0",
  18. "hyperf/http-message": "~3.1.0",
  19. "hyperf/http-server": "~3.1.0",
  20. "hyperf/support": "~3.1.0",
  21. "hyperf/utils": "~3.1.0",
  22. "phpunit/phpunit": "^10.0",
  23. "psr/container": "^1.0 || ^2.0",
  24. "symfony/http-foundation": "^5.4 || ^6.0"
  25. },
  26. "suggest": {
  27. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Hyperf\\Testing\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "HyperfTest\\Testing\\": "tests/"
  37. }
  38. },
  39. "bin": [
  40. "co-phpunit"
  41. ],
  42. "extra": {
  43. "branch-alias": {
  44. "dev-master": "3.1-dev"
  45. }
  46. }
  47. }