-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1 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
{
"name": "monteiro/ddd-bundle",
"type": "symfony-bundle",
"description": "Apply DDD easily to your project with domain events",
"keywords": [
"ddd",
"domain-events"
],
"homepage": "https://github.com/monteiro/ddd-bundle",
"license": "MIT",
"authors": [
{
"name": "Hugo Monteiro",
"email": "hugo.monteiro@gmail.com"
}
],
"require": {
"ext-pcntl": "*",
"symfony/serializer": "^7.0",
"symfony/console": "^7.0",
"symfony/messenger": "^7.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/http-kernel": "^7.0",
"doctrine/doctrine-bundle": "^2.11",
"symfony/uid": "^7.0",
"doctrine/orm": "^2.17",
"doctrine/doctrine-migrations-bundle": "^3.3"
},
"autoload": {
"psr-4": {
"App\\DDDBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\DDDBundle\\Tests\\": "tests"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.41",
"symfony/phpunit-bridge": "^7.0"
}
}