32 lines
857 B
JSON
32 lines
857 B
JSON
{
|
||
"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"
|
||
]
|
||
}
|
||
} |