-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.31 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
{
"name": "simplycodedsoftware/integration-messaging-amqp",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dariusz Gafka",
"email": "[email protected]"
}
],
"keywords": ["amqp", "rabbitmq", "rabbit", "messaging", "asynchronous", "message", "spring", "enterprise integration patterns", "eip", "distributed architecture", "event driven architecture", "eda"],
"description": "Framework to provide pipe and filters architecture and solutions to work in distributed architecture. Based on enterprise integration patterns and java spring framework.",
"autoload": {
"psr-4": {
"SimplyCodedSoftware\\IntegrationMessaging\\Amqp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\SimplyCodedSoftware\\IntegrationMessaging\\Amqp\\": "tests/phpunit",
"Behat\\Bootstrap\\": "tests/Behat/Bootstrap",
"Fixture\\": "tests/Fixture"
}
},
"require": {
"php": ">=7.1.0",
"simplycodedsoftware/integration-messaging": "^0.4.0",
"php-amqplib/php-amqplib": "^2.7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.2.3",
"behat/behat": "^3.3.1",
"phan/phan": "^0.10.0"
},
"config": {
"bin-dir": "bin/"
}
}