-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.38 KB
/
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
46
47
48
49
50
51
52
53
{
"name": "php-etl/rabbitmq-flow",
"description": "RabbitMQ implementation for the ETL pipeline",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Kiboko SAS",
"homepage": "http://kiboko.fr"
},
{
"name": "Grégory Planchat",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Kiboko\\Component\\Flow\\RabbitMQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"unit\\Kiboko\\Component\\Flow\\RabbitMQ\\": "tests/unit/",
"functional\\Kiboko\\Component\\Flow\\RabbitMQ\\": "tests/functional/",
"integration\\Kiboko\\Component\\Flow\\RabbitMQ\\": "tests/integration/"
}
},
"config": {
"bin-dir": "bin",
"allow-plugins": {
"infection/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"php-etl/pipeline-contracts": "0.5.*",
"php-etl/bucket-contracts": "0.3.*",
"php-etl/bucket": "*",
"bunny/bunny": "*",
"symfony/polyfill-uuid": "^1.28"
},
"require-dev": {
"rector/rector": "^0.15",
"mikey179/vfsstream": "^1.6"
},
"extra": {
"branch-alias": {
"dev-main": "0.3.x-dev"
}
}
}