forked from SimpleBus/SimpleBus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (76 loc) · 3.33 KB
/
composer.json
File metadata and controls
80 lines (76 loc) · 3.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "simple-bus/simple-bus",
"type": "library",
"description": "Simple CommandBus and EventBus implementation",
"keywords": [
"message bus",
"command bus"
],
"homepage": "http://docs.simplebus.io/",
"license": "MIT",
"authors": [
{
"name": "Cliff Odijk",
"email": "cliff@jcid.nl"
},
{
"name": "Matthias Noback",
"email": "matthiasnoback@gmail.com",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require-dev": {
"beberlei/assert": "~2.0 || ~3.0",
"doctrine/dbal": "~2.5",
"doctrine/doctrine-bundle": "~1.0",
"doctrine/orm": "~2.5",
"jms/serializer-bundle": "~0.11 || ~1.0 || ~2.0 || ~3.0",
"matthiasnoback/doctrine-orm-test-service-provider": "~3.0",
"matthiasnoback/phpunit-asynchronicity": "~1.0 || ~2.0",
"matthiasnoback/symfony-dependency-injection-test": "~1.2 || ~2.0",
"php-amqplib/rabbitmq-bundle": "~1.10",
"phpunit/phpunit": "^5.7 || ^6.0",
"psr/log": "~1.0",
"symfony/config": "~3.3 || ~4.0",
"symfony/console": "~3.3 || ~4.0",
"symfony/dependency-injection": "~3.3 || ~4.0",
"symfony/finder": "~3.3 || ~4.0",
"symfony/framework-bundle": "~3.3 || ~4.0",
"symfony/http-kernel": "~3.3 || ~4.0",
"symfony/monolog-bundle": "~2.3 || ~3.0",
"symfony/process": "~3.3 || ~4.0",
"symfony/proxy-manager-bridge": "~3.3 || ~4.0",
"symfony/yaml": "~3.3 || ~4.0"
},
"autoload": {
"psr-4": {
"SimpleBus\\DoctrineDBALBridge\\": "Bridge/DoctrineDBALBridge/src",
"SimpleBus\\DoctrineORMBridge\\": "Bridge/DoctrineORMBridge/src",
"SimpleBus\\JMSSerializerBridge\\": "Bridge/JMSSerializerBridge/src",
"SimpleBus\\AsynchronousBundle\\": "Bundle/AsynchronousBundle/src",
"SimpleBus\\JMSSerializerBundleBridge\\": "Bundle/JMSSerializerBundleBridge/src",
"SimpleBus\\RabbitMQBundleBridge\\": "Bundle/RabbitMQBundleBridge/src",
"SimpleBus\\SymfonyBridge\\": "Bundle/SymfonyBridge/src",
"SimpleBus\\Asynchronous\\": "Component/Asynchronous/src",
"SimpleBus\\Message\\": "Component/MessageBus/src",
"SimpleBus\\Serialization\\": "Component/Serialization/src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleBus\\DoctrineDBALBridge\\Tests\\": "Bridge/DoctrineDBALBridge/tests",
"SimpleBus\\DoctrineORMBridge\\Tests\\": "Bridge/DoctrineORMBridge/tests",
"SimpleBus\\JMSSerializerBridge\\Tests\\": "Bridge/JMSSerializerBridge/tests",
"SimpleBus\\AsynchronousBundle\\Tests\\": "Bundle/AsynchronousBundle/tests",
"SimpleBus\\JMSSerializerBundleBridge\\Tests\\": "Bundle/JMSSerializerBundleBridge/tests",
"SimpleBus\\RabbitMQBundleBridge\\Tests\\": "Bundle/RabbitMQBundleBridge/tests",
"SimpleBus\\SymfonyBridge\\Tests\\": "Bundle/SymfonyBridge/tests",
"SimpleBus\\Asynchronous\\Tests\\": "Component/Asynchronous/tests",
"SimpleBus\\Message\\Tests\\": "Component/MessageBus/tests",
"SimpleBus\\Serialization\\Tests\\": "Component/Serialization/tests"
}
},
"config": {
"sort-packages": true
}
}