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
46
47
48
49
|
{
"name": "php-amqp/php-amqp",
"type": "php-ext",
"description": "PHP AMQP Binding Library",
"keywords": [
"rabbitmq",
"amqp",
"message",
"queue"
],
"homepage": "https://github.com/php-amqp/php-amqp",
"license": "PHP-3.01",
"authors": [
{
"name": "Lars Strojny",
"email": "lstrojny@php.net",
"role": "lead"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"ext-json": "*",
"ext-dom": "*",
"ext-simplexml": "*",
"symplify/easy-coding-standard": "*",
"slevomat/coding-standard": "^8.13"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
},
"php-ext": {
"extension-name": "amqp",
"configure-options": [
{
"name": "with-amqp",
"description": "Include amqp support"
},
{
"name": "with-librabbitmq-dir",
"description": "Set the path to librabbitmq install prefix.",
"needs-value": true
}
]
}
}
|