-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.71 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
{
"name": "dsantang/domain-events-doctrine",
"description": "Package that provides an integration with Doctrine ORM to automatically dispatch Domain Events.",
"type": "library",
"license": [
"MIT"
],
"keywords": [
"domain event",
"domain driven design",
"dispatcher",
"orm",
"doctrine"
],
"authors": [
{
"name": "Davide Santangelo"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Dsantang\\DomainEventsDoctrine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Dsantang\\DomainEventsDoctrine\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"doctrine/dbal": "^3.5",
"doctrine/orm": "^2.8",
"dsantang/domain-events": "^0.5",
"ramsey/uuid": "^4.1",
"symfony/event-dispatcher": "^5.2",
"symfony/event-dispatcher-contracts": "^2.4"
},
"suggest": {
"symfony/event-dispatcher" : "To be able to dispatch domain events via a Symfony's EventDispatcherInterface."
},
"require-dev": {
"doctrine/coding-standard": "^9.0",
"infection/infection": "^0.26",
"maglnet/composer-require-checker": "^3.2",
"ocramius/package-versions": "^2.7",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.4",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
}
}