1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "hyperf/testing",
- "type": "library",
- "license": "MIT",
- "keywords": [
- "dev",
- "php",
- "swoole",
- "testing"
- ],
- "description": "Testing for hyperf",
- "autoload": {
- "psr-4": {
- "Hyperf\\Testing\\": "src/"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "HyperfTest\\Testing\\": "tests/"
- }
- },
- "require": {
- "php": ">=8.1",
- "psr/container": "^1.0|^2.0",
- "phpunit/phpunit": "^10.0",
- "hyperf/codec": "~3.1.0",
- "hyperf/collection": "~3.1.0",
- "hyperf/contract": "~3.1.0",
- "hyperf/coroutine": "~3.1.0",
- "hyperf/http-message": "~3.1.0",
- "hyperf/http-server": "~3.1.0",
- "hyperf/support": "~3.1.0",
- "hyperf/utils": "~3.1.0",
- "symfony/http-foundation": "^5.4|^6.0"
- },
- "suggest": {
- "fakerphp/faker": "Required to use Faker feature.(^1.23)"
- },
- "extra": {
- "branch-alias": {
- "dev-master": "3.1-dev"
- }
- },
- "bin": [
- "co-phpunit"
- ]
- }
|