-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
113 lines (113 loc) · 3.76 KB
/
Copy pathcomposer.json
File metadata and controls
113 lines (113 loc) · 3.76 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ecotone/symfony-bundle",
"type": "symfony-bundle",
"homepage": "https://docs.ecotone.tech/",
"forum": "https://discord.gg/GwM2BSuXeg",
"minimum-stability": "dev",
"prefer-stable": true,
"license": [
"Apache-2.0",
"proprietary"
],
"authors": [
{
"name": "Dariusz Gafka",
"email": "support@simplycodedsoftware.com"
}
],
"keywords": [
"symfony",
"symfony-bundle",
"symfony-messenger",
"ecotone",
"ddd",
"cqrs",
"event-sourcing",
"sagas",
"durable-workflows",
"workflow",
"outbox",
"messaging",
"eip"
],
"description": "Ecotone for Symfony — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Symfony Messenger, via PHP attributes.",
"require": {
"ecotone/ecotone": "~1.316.1",
"symfony/console": "^6.4|^7.0|^8.0",
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
"symfony/framework-bundle": "^6.4|^7.0|^8.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.7.2",
"doctrine/orm": "^2.11|^3.0",
"ecotone/dbal": "~1.316.1",
"ecotone/kafka": "~1.316.1",
"ext-rdkafka": "*",
"monolog/monolog": "^2.9|^3.3.1",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^10.5|^11.0",
"symfony/amqp-messenger": "^6.4|^7.0|^8.0",
"symfony/doctrine-messenger": "^6.4|^7.0|^8.0",
"symfony/expression-language": "^6.4|^7.0|^8.0",
"symfony/messenger": "^6.4|^7.0|^8.0",
"symfony/monolog-bundle": "^3.10",
"symfony/translation": "^6.4|^7.0|^8.0",
"symfony/var-exporter": "^6.4|^7.0|^8.0",
"symfony/yaml": "^6.4|^7.0|^8.0"
},
"conflict": {
"symfony/proxy-manager-bridge": "<5.4.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ecotone\\SymfonyBundle\\DependencyInjection\\": "DependencyInjection",
"Ecotone\\SymfonyBundle\\": "SymfonyBundle"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/phpunit",
"Fixture\\": "tests/Fixture",
"Ecotone\\SymfonyBundle\\App\\": "App",
"Symfony\\App\\MultiTenant\\": "tests/phpunit/MultiTenant/src",
"Symfony\\App\\SingleTenant\\": "tests/phpunit/SingleTenant/src",
"Symfony\\App\\Licence\\": "tests/phpunit/Licence/src",
"Symfony\\App\\EnvPlaceholderEndpoint\\": "tests/phpunit/EnvPlaceholderEndpoint/src",
"Symfony\\App\\EnvPlaceholderKafka\\": "tests/phpunit/EnvPlaceholderKafka/src"
}
},
"scripts": {
"tests:phpstan": "vendor/bin/phpstan",
"tests:phpunit": [
"vendor/bin/phpunit --no-coverage"
],
"tests:ci": [
"@tests:phpstan",
"@tests:phpunit",
"bin/console ecotone:list"
]
},
"extra": {
"branch-alias": {
"dev-main": "1.316.1-dev"
},
"ecotone": {
"repository": "symfony"
},
"license-info": {
"Apache-2.0": {
"name": "Apache License 2.0",
"url": "https://github.com/ecotoneframework/ecotone-dev/blob/main/LICENSE",
"description": "Allows to use non Enterprise features of Ecotone. For more information please write to support@simplycodedsoftware.com"
},
"proprietary": {
"name": "Enterprise License",
"description": "Allows to use Enterprise features of Ecotone. For more information please write to support@simplycodedsoftware.com"
}
},
"release-time": "2026-06-12 04:51:25"
}
}