-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
62 lines (62 loc) · 1.64 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": "simple-bus/doctrine-orm-bridge",
"type": "library",
"description": "Doctrine ORM bridge for using command and event buses",
"keywords": [
"Doctrine",
"event bus",
"command bus"
],
"homepage": "http://github.com/SimpleBus/DoctrineORMBridge",
"license": "MIT",
"authors": [
{
"name": "Cliff Odijk",
"email": "cliff@jcid.nl"
},
{
"name": "Ruud Kamphuis",
"homepage": "https://github.com/ruudk"
},
{
"name": "Matthias Noback",
"email": "matthiasnoback@gmail.com",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^8.0",
"doctrine/dbal": "^2.12 || ^3.0",
"doctrine/orm": "^2.8.5",
"simple-bus/message-bus": "^6.0"
},
"conflict": {
"doctrine/dbal": "<2.13.3",
"doctrine/persistence": "<2.2.2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.11",
"phpunit/phpunit": "^9.5.5",
"pimple/pimple": "^3.5",
"symfony/cache": "^5.4 || ^6.0",
"symfony/phpunit-bridge": "^6.0"
},
"suggest": {
"simple-bus/symfony-bridge": "Bridge for using command buses and event buses with Symfony"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SimpleBus\\DoctrineORMBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleBus\\DoctrineORMBridge\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}