forked from dddshelf/ddd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 921 Bytes
/
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
{
"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": "carlos.buenosvinos@gmail.com",
"homepage": "http://carlosbuenosvinos.com"
}
],
"autoload": {
"psr-4": {"Ddd\\": "src/"}
},
"require": {
"jms/serializer": "0.*"
},
"require-dev": {
"phpunit/phpunit": "4.2.*"
},
"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"
},
"config": {
"bin-dir": "bin/",
"preferred-install": "dist"
}
}