-
Notifications
You must be signed in to change notification settings - Fork 107
/
composer.json
37 lines (37 loc) · 1.12 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
{
"name": "carlosbuenosvinos/ddd",
"description": "Domain-Driven Design PHP helper classes (Application Services, Transactions, Domain Events, etc.",
"homepage": "https://leanpub.com/ddd-in-php",
"license": "MIT",
"authors": [
{
"name": "Carlos Buenosvinos",
"email": "[email protected]",
"homepage": "http://carlosbuenosvinos.com"
}
],
"autoload": {
"psr-4": {"Ddd\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"Ddd\\": "tests/"
}
},
"require": {
"jms/serializer": "~1.1",
"react/event-loop": "^0.4.1"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"suggest": {
"doctrine/orm": "It allows Transactional Application Services and/or Domain Events persisted using Doctrine",
"videlalvaro/php-amqplib": "It allows Domain Events notification using RabbitMQ",
"ext/amqp": "It allows the usage of asynchronous messaging producers and message listeners"
},
"config": {
"bin-dir": "bin/",
"preferred-install": "dist"
}
}