-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
55 lines (55 loc) · 1.46 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
54
55
{
"name": "prooph/psb-enqueue-producer",
"description": "Enqueue Message Producer for Prooph Service Bus",
"homepage": "http://getprooph.org/",
"license": "MIT",
"authors": [
{
"name": "Maksym Kotliar",
"email": "[email protected]"
},
{
"name": "Alexander Miertsch",
"email": "[email protected]"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"keywords": [
"prooph",
"CQRS",
"messaging",
"enqueue"
],
"require": {
"php": "^7.1",
"prooph/common" : "^4.1",
"prooph/service-bus" : "^6.0",
"enqueue/simple-client": "^0.10"
},
"require-dev": {
"react/promise": "^2.4.1",
"psr/container": "^1.0",
"sandrokeil/interop-config": "^2.0.1",
"phpspec/prophecy": "^1.7",
"phpunit/phpunit": "^6.0",
"enqueue/fs": "^0.10",
"prooph/php-cs-fixer-config": "^0.4"
},
"suggest" : {
"psr/container": "^1.0 for usage of provided factories",
"sandrokeil/interop-config": "For usage of provided factories"
},
"autoload": {
"psr-4": {
"Prooph\\ServiceBus\\Message\\Enqueue\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\ServiceBus\\": "vendor/prooph/service-bus/tests/"
}
}
}