-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 999 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
39
40
41
42
43
44
45
{
"name": "limingxinleo/swoft-amqplib",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"component"
],
"description": "Amqplib简单封装组件",
"authors": [
{
"name": "李铭昕",
"email": "limingxin@swoft.org"
}
],
"autoload": {
"psr-4": {
"Swoftx\\Amqplib\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SwoftTest\\": "tests"
}
},
"require": {
"php": ">=7.1",
"ext-pcntl": "*",
"php-amqplib/php-amqplib": "^2.7"
},
"require-dev": {
"swoft/swoole-ide-helper": "dev-master",
"phpunit/phpunit": "^5.7",
"phpstan/phpstan": "^0.10.5",
"limingxinleo/x-trait-common": "^1.1",
"swoft/framework": "^1.0"
},
"extra": {
"config-plugin": {
"swoft.components": [
"config/components.php"
]
}
}
}