-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (53 loc) · 1.71 KB
/
composer.json
File metadata and controls
58 lines (53 loc) · 1.71 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
{
"name": "simplycodedsoftware/integration-messaging",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Dariusz Gafka",
"email": "dgafka.mail@gmail.com"
}
],
"keywords": ["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\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\SimplyCodedSoftware\\": "tests"
},
"psr-0": {
"FixtureAutoloadTest\\": "tests\\Messaging",
"FixtureIncorrectNamespace\\": "tests\\Messaging"
}
},
"require": {
"php": ">=7.3.0",
"ramsey/uuid": "^3.0",
"ocramius/proxy-manager": "^2.1.1",
"doctrine/annotations": "^1.6.0",
"symfony/expression-language": "^2.0|^3.0|^4.0",
"dragonmantank/cron-expression": "^2.2",
"psr/log": "^1.1.0",
"psr/http-message": "^1.0.1",
"guzzlehttp/psr7": "^1.4",
"enqueue/amqp-lib": "^0.9",
"enqueue/dsn": "^0.9",
"enqueue/enqueue": "^0.9"
},
"require-dev": {
"phpunit/phpunit": "^8.0.0",
"behat/behat": "^3.3.1",
"phan/phan": "^1.2.0",
"guzzlehttp/psr7": "^1.4",
"enqueue/amqp-lib": "^0.9",
"enqueue/dsn": "^0.9",
"enqueue/enqueue": "^0.9"
},
"config": {
"bin-dir": "bin/"
}
}