-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (61 loc) · 1.47 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
{
"name": "hmlb/ddd-bundle",
"description": "DDD Bundle for Symfony2 projects.",
"type": "library",
"keywords": [
"hmlb",
"DDD",
"domain driven design",
"command bus",
"php"
],
"authors": [
{
"name": "Hugues Maignol",
"email": "[email protected]",
"homepage": "https://www.hmlb.fr"
}
],
"homepage": "https://github.com/hmlb/ddd-bundle",
"license": "MIT",
"require": {
"php": "~7.0",
"hmlb/ddd": "~1.0@dev",
"simple-bus/message-bus": "~2.1",
"simple-bus/symfony-bridge": "~4.0",
"symfony/http-kernel": "~3.0",
"symfony/dependency-injection": "~3.0",
"symfony/yaml": "~3.0",
"symfony/validator": "~3.0",
"symfony/form": "~3.0",
"symfony/options-resolver": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.3",
"satooshi/php-coveralls": "~0.7@dev",
"psr/log": "1.0.0",
"simple-bus/doctrine-orm-bridge": "~4.0",
"doctrine/orm": "~2.5",
"doctrine/doctrine-bundle": "~1.0",
"symfony/monolog-bundle": "~2.8|3.0",
"matthiasnoback/symfony-config-test": "~1.3",
"matthiasnoback/symfony-dependency-injection-test": "~0.7"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4" : { "HMLB\\DDDBundle\\" : "src" }
},
"autoload-dev": {
"psr-4" : { "HMLB\\DDDBundle\\Tests\\" : "tests" }
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}