-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
38 lines (38 loc) · 933 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
35
36
37
38
{
"name": "codeages/plumber2",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "L1 L31",
"email": "wellming.li@howzhi.com"
}
],
"autoload": {
"psr-4": {
"Codeages\\Plumber\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codeages\\Plumber\\Example\\" : "example/",
"Codeages\\Plumber\\Tests\\" : "tests/"
}
},
"require": {
"php": ">=5.6.0",
"ext-posix": "*",
"ext-pcntl": "*",
"docopt/docopt": "^1.0",
"monolog/monolog": "^1.24",
"psr/container": "^1.0",
"codeages/rate-limiter": "^0.2.2",
"codeages/beanstalk-client": "^0.1.4"
},
"require-dev": {
"ext-redis": "*",
"swoft/swoole-ide-helper": "^4.2",
"phpunit/phpunit": "^5 || ^6 || ^7 || ^8"
},
"bin": ["bin/plumber"]
}