You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
857 B
32 lines
857 B
3 months ago
|
{
|
||
|
"name": "yurunsoft/yurun-http",
|
||
|
"description": "YurunHttp 是开源的 PHP HTTP 类库,支持链式操作,简单易用。支持 Curl、Swoole,支持 Http、Http2、WebSocket!",
|
||
|
"require": {
|
||
|
"php": ">=5.5.0",
|
||
|
"psr/http-message": "~1.0"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"swoole/ide-helper": "^4.5",
|
||
|
"phpunit/phpunit": ">=4",
|
||
|
"workerman/workerman": "^4.0"
|
||
|
},
|
||
|
"type": "library",
|
||
|
"license": "MIT",
|
||
|
"autoload": {
|
||
|
"psr-4": {
|
||
|
"Yurun\\Util\\": "./src/"
|
||
|
}
|
||
|
},
|
||
|
"autoload-dev": {
|
||
|
"psr-4": {
|
||
|
"Yurun\\Util\\YurunHttp\\Test\\": "tests/unit/"
|
||
|
}
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "./vendor/bin/phpunit -c ./tests/phpunit.xml",
|
||
|
"install-test": [
|
||
|
"@composer install",
|
||
|
"@composer test"
|
||
|
]
|
||
|
}
|
||
|
}
|