Skip to content

Commit 38ce28e

Browse files
committed
Initial commit with a RabbitMQ rejection
0 parents  commit 38ce28e

File tree

9 files changed

+4776
-0
lines changed

9 files changed

+4776
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bin/
2+
/vendor/

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/rabbitmq-flow.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"name": "php-etl/rabbitmq-flow",
3+
"description": "RabbitMQ implementation for the ETL pipeline",
4+
"type": "library",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Kiboko SAS",
9+
"homepage": "http://kiboko.fr"
10+
},
11+
{
12+
"name": "Grégory Planchat",
13+
"email": "gregory@kiboko.fr"
14+
}
15+
],
16+
"autoload": {
17+
"psr-4": {
18+
"Kiboko\\Component\\Flow\\RabbitMQ\\": "src/"
19+
}
20+
},
21+
"autoload-dev": {
22+
"psr-4": {
23+
"unit\\Kiboko\\Component\\Flow\\RabbitMQ\\": "tests/unit/",
24+
"functional\\Kiboko\\Component\\Flow\\RabbitMQ\\": "tests/functional/"
25+
}
26+
},
27+
"config": {
28+
"bin-dir": "bin"
29+
},
30+
"minimum-stability": "dev",
31+
"prefer-stable": true,
32+
"require": {
33+
"php": "^8.0",
34+
"psr/log": "^1.1@dev",
35+
"php-etl/pipeline-contracts": "^0.2.0",
36+
"php-etl/bucket": "^0.2.0",
37+
"bunny/bunny": "@dev"
38+
},
39+
"require-dev": {
40+
"phpunit/phpunit": "^9.0",
41+
"phpunit/php-invoker": "*",
42+
"johnkary/phpunit-speedtrap": "*",
43+
"mybuilder/phpunit-accelerator": "*",
44+
"infection/infection": "^0.20",
45+
"adlawson/vfs": "dev-develop",
46+
"php-etl/phpunit-extension": "*"
47+
},
48+
"extra": {
49+
"branch-alias": {
50+
"dev-master": "0.1.x-dev"
51+
}
52+
}
53+
}

0 commit comments

Comments
 (0)