-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathcomposer.json
79 lines (79 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "simple-bus/symfony-bridge",
"type": "symfony-bundle",
"description": "Bridge for using command buses and event buses in Symfony projects",
"keywords": [
"Symfony",
"Doctrine",
"event bus",
"command bus"
],
"homepage": "http://github.com/SimpleBus/SymfonyBridge",
"license": "MIT",
"authors": [
{
"name": "Cliff Odijk",
"email": "[email protected]"
},
{
"name": "Ruud Kamphuis",
"homepage": "https://github.com/ruudk"
},
{
"name": "Matthias Noback",
"email": "[email protected]",
"homepage": "http://php-and-symfony.matthiasnoback.nl"
}
],
"require": {
"php": "^8.0",
"simple-bus/message-bus": "^6.0",
"symfony/config": "^5.4 || ^6.0",
"symfony/dependency-injection": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"conflict": {
"doctrine/dbal": "<2.13.3",
"doctrine/persistence": "<2.2.2",
"friendsofphp/proxy-manager-lts": "<1.0.5",
"monolog/monolog": "<1.26.1 || >=2.0,<2.3.0",
"zendframework/zend-code": "<3.3.1"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.5",
"doctrine/orm": "^2.8.5",
"ergebnis/composer-normalize": "^2.11",
"friendsofphp/proxy-manager-lts": "^1.0",
"laminas/laminas-code": "^4.5",
"phpunit/phpunit": "^9.5.5",
"simple-bus/doctrine-orm-bridge": "^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/monolog-bridge": "^5.4 || ^6.0",
"symfony/monolog-bundle": "^3.4",
"symfony/phpunit-bridge": "^6.0",
"symfony/proxy-manager-bridge": "^5.4 || ^6.0"
},
"suggest": {
"doctrine/doctrine-bundle": "For integration with Doctrine ORM",
"doctrine/orm": "For integration with Doctrine ORM",
"simple-bus/doctrine-orm-bridge": "For integration with Doctrine ORM",
"symfony/monolog-bundle": "For logging messages",
"symfony/proxy-manager-bridge": "For integration with Symfony and Doctrine ORM"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"SimpleBus\\SymfonyBridge\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimpleBus\\SymfonyBridge\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}