forked from dddshelf/last-wishes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
{
"name": "dddinphp/last-wishes",
"description": "Domain-Driven Design Example Application",
"license": "MIT",
"require": {
"php": ">=5.6.0",
"beberlei/assert": "@stable",
"carlosbuenosvinos/ddd": "^1.0",
"doctrine/orm": "^2.0",
"jms/serializer": "~0.16.0",
"predis/predis": "^1.0",
"silex/silex": "^1.0",
"silex/web-profiler": "^1.0",
"swiftmailer/swiftmailer": "^5.0",
"symfony/config": "^2.5",
"symfony/console": "^2.5",
"symfony/form": "^2.5",
"symfony/security": "^2.5",
"symfony/translation": "^2.5",
"symfony/twig-bridge": "^2.5",
"twig/twig": ">=1.8,<2.0-dev",
"php-amqplib/php-amqplib": "^2.0",
"monolog/monolog": "^1.0",
"ruflin/elastica": "^2.0",
"guzzlehttp/guzzle": "^6.1",
"sorien/silex-dbal-profiler": "^1.1",
"ramsey/uuid": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "^5.0"
},
"authors": [
{
"name": "Carlos Buenosvinos",
"email": "[email protected]",
"homepage": "https://carlosbuenosvinos.com"
},
{
"name": "Domain-Driven Design Book Authors",
"email": "[email protected]",
"homepage": "https://leanpub.com/ddd-in-php"
}
],
"autoload": {
"psr-4": {
"Lw\\": "src/Lw/"
}
},
"autoload-dev": {
"psr-4": {
"Lw\\": "tests/Lw/"
}
},
"config": {
"bin-dir": "bin"
},
"prefer-stable": true,
"scripts": {
"test": "bin/phpunit",
"post-install-cmd": [
"npm install",
"./node_modules/bower/bin/bower install"
]
}
}