-
Notifications
You must be signed in to change notification settings - Fork 56
/
composer.json
34 lines (34 loc) · 934 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "yurunsoft/yurun-http",
"description": "YurunHttp 是开源的 PHP HTTP 类库,支持链式操作,简单易用。支持 Curl、Swoole,支持 Http、Http2、WebSocket!",
"require": {
"php": ">=7.1",
"psr/http-message": "~1.0|~2.0",
"psr/log": "~1.0|~2.0|~3.0"
},
"require-dev": {
"swoole/ide-helper": "^4.5",
"phpunit/phpunit": ">=4 <9.7",
"workerman/workerman": "^4.0",
"monolog/monolog": "*"
},
"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"
]
}
}