32 lines
857 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"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"
]
}
}