-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomposer.json
More file actions
78 lines (78 loc) · 2 KB
/
composer.json
File metadata and controls
78 lines (78 loc) · 2 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "prolic/humus-amqp",
"type": "library",
"description": "PHP-AMQP library with RabbitMQ Extensions",
"keywords": [
"rabbit",
"rabbitmq",
"queue",
"amqp",
"humus",
"messaging"
],
"homepage": "https://github.com/prolic/HumusAmqp",
"license": "MIT",
"authors": [
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"beberlei/assert": "^3.2.7",
"marc-mabe/php-enum": "^4.7",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"ext-pcntl": "*",
"laminas/laminas-servicemanager": "^3.0",
"malukenho/docheader": "^0.1.8 || ^1.0",
"php-amqplib/php-amqplib": "^3.0",
"php-coveralls/php-coveralls": "^2.4",
"php-mock/php-mock-phpunit": "^2.6",
"phpspec/prophecy": "^1.17",
"phpunit/phpunit": "^9.6",
"prooph/php-cs-fixer-config": "^0.5.0",
"psr/container": "^1.0",
"sandrokeil/interop-config": "^1.0 || ^2.0",
"symfony/console": "^5.4 || ^6.3",
"phpspec/prophecy-phpunit": "^2.0"
},
"conflict": {
"sandrokeil/interop-config": "<1.0",
"container-interop/container-interop": "<1.2"
},
"suggest": {
"ext-pcntl": "For process control management",
"ext-amqp": ">= 1.9.3 For usage together with php amqp extension",
"php-amqplib/php-amqplib": ">= 2.11 For usage together with php-amqplib",
"symfony/console": "For usage of the provided console tool",
"psr/container": "For usage of provided factories",
"sandrokeil/interop-config": "For usage of provided factories"
},
"autoload": {
"psr-4": {
"Humus\\Amqp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HumusTest\\Amqp\\": "tests/",
"AMQPBasicProperties\\": "stubs/amqp/"
}
},
"bin": [
"bin/humus-amqp"
],
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit"
}
}