-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.23 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
{
"name": "simplycodedsoftware/integration-messaging-http",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dariusz Gafka",
"email": "[email protected]"
}
],
"keywords": ["messaging", "asynchronous", "message", "spring", "enterprise integration patterns", "eip", "distributed architecture", "event driven architecture", "eda", "http", "web"],
"description": "Http module for integration messaging. Will provide you with HttpInboundGateway",
"autoload": {
"psr-4": {
"SimplyCodedSoftware\\IntegrationMessaging\\Http\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\SimplyCodedSoftware\\IntegrationMessaging\\Http\\": "tests/phpunit",
"Behat\\Bootstrap\\": "tests/Behat/Bootstrap",
"Fixture\\": "tests/Fixture"
}
},
"require": {
"php": ">=7.1.0",
"simplycodedsoftware/integration-messaging": "^0.4.0",
"psr/http-message": "^1.0.1",
"guzzlehttp/psr7": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^6.2.3",
"behat/behat": "^3.3.1",
"phan/phan": "^0.10.0"
},
"config": {
"bin-dir": "bin/"
}
}