Skip to content

Commit

Permalink
Added composer.json normalize support (#6887)
Browse files Browse the repository at this point in the history
  • Loading branch information
huangdijia committed Jun 17, 2024
1 parent 923e862 commit 7d01a94
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,28 +1,16 @@
{
"name": "hyperf/testing",
"type": "library",
"description": "Testing for hyperf",
"license": "MIT",
"type": "library",
"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",
Expand All @@ -31,17 +19,29 @@
"hyperf/http-server": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/utils": "~3.1.0",
"symfony/http-foundation": "^5.4|^6.0"
"phpunit/phpunit": "^10.0",
"psr/container": "^1.0 || ^2.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"
"autoload": {
"psr-4": {
"Hyperf\\Testing\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Testing\\": "tests/"
}
},
"bin": [
"co-phpunit"
]
],
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
}
}
}

0 comments on commit 7d01a94

Please sign in to comment.