-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
58 lines (58 loc) · 1.61 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
{
"name": "headsnet/domain-events-bundle",
"type": "symfony-bundle",
"description": "Integrates domain events into your Symfony application",
"keywords": [
"bundle",
"ddd",
"domain event",
"observer pattern"
],
"homepage": "https://github.com/headsnet/domain-event-bundle",
"license": "MIT",
"support": {
"issues": "https://github.com/headsnet/domain-event-bundle/issues"
},
"require": {
"php": "^8.1",
"doctrine/orm": "^2.5 || ^3.0",
"doctrine/doctrine-bundle": "^2.0",
"ramsey/uuid-doctrine": "^1.5 || ^2.0",
"symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
"symfony/framework-bundle": "^5.4 || ^6.4 || ^7.0",
"symfony/lock": "^5.4 || ^6.4 || ^7.0",
"symfony/messenger": "^5.4 || ^6.4 || ^7.0",
"symfony/property-access": "^5.4 || ^6.4 || ^7.0",
"symfony/serializer": "^5.4 || ^6.4 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symplify/easy-coding-standard": "^11.1",
"nyholm/symfony-bundle-test": "^2.0 || ^3.0",
"phpstan/phpstan": "^1.8"
},
"suggest": {
"ext-amqp": "*"
},
"autoload": {
"psr-4": {
"Headsnet\\DomainEventsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Headsnet\\DomainEventsBundle\\": "tests/"
}
},
"scripts": {
"cs": "vendor/bin/ecs check --ansi --config=ecs.php",
"cs-fix": "vendor/bin/ecs check --ansi --config=ecs.php --fix",
"static": "vendor/bin/phpstan analyze --ansi",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html tests/_output/coverage"
},
"config": {
"allow-plugins": {
}
}
}