Skip to content

Commit 5f8d7bb

Browse files
Creating given type of Event Stream (#355)
1 parent 1bed401 commit 5f8d7bb

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

DependencyInjection/Compiler/CacheWarmer.php

+3-6
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,11 @@ public function isOptional(): bool
2424

2525
public function warmUp(string $cacheDir, string $buildDir = null): array
2626
{
27+
$files = [];
2728
foreach ($this->configuredMessagingSystem->getGatewayList() as $gatewayReference) {
28-
$this->proxyFactory->createWithCurrentConfiguration(
29-
$gatewayReference->getReferenceName(),
30-
$this->configuredMessagingSystem,
31-
$gatewayReference->getInterfaceName()
32-
);
29+
$files[] = $this->proxyFactory->generateCachedProxyFileFor($gatewayReference, true);
3330
}
3431

35-
return [];
32+
return $files;
3633
}
3734
}

SymfonyBundle/MessagingSystemFactory.php

Whitespace-only changes.

composer.json

+9-7
Original file line numberDiff line numberDiff line change
@@ -27,26 +27,28 @@
2727
],
2828
"description": "Extends Ecotone with Symfony integration",
2929
"require": {
30-
"ecotone/ecotone": "~1.225.0",
31-
"laminas/laminas-zendframework-bridge": "^1.0.0",
30+
"ecotone/ecotone": "~1.226.0",
3231
"symfony/console": "^5.4|^6.0|^7.0",
3332
"symfony/dependency-injection": ">=v5.4.19 <6.0.0 || >=v6.0.19 <6.1.0 || >=v6.1.11 <6.2.0 || >=v6.2.5 <7.0.0 || >=v7.0.0 <8.0.0",
3433
"symfony/framework-bundle": "^5.4|^6.0|^7.0"
3534
},
3635
"require-dev": {
3736
"behat/behat": "^3.10",
3837
"doctrine/doctrine-bundle": "^2.7.2",
39-
"doctrine/orm": "^2.0|^3.0",
38+
"doctrine/orm": "^2.11|^3.0",
4039
"friends-of-behat/symfony-extension": "<=2.4.2|^2.5",
4140
"monolog/monolog": "^2.9|^3.3.1",
4241
"phpstan/phpstan": "^1.8",
43-
"phpunit/phpunit": "^9.5",
42+
"phpunit/phpunit": "^9.6",
4443
"symfony/amqp-messenger": "^5.4.31|^6.0|^7.0",
4544
"symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
4645
"symfony/expression-language": "^6.0|^7.0",
4746
"symfony/messenger": "^5.4|^6.0|^7.0",
48-
"wikimedia/composer-merge-plugin": "^2.0",
49-
"ecotone/dbal": "~1.225.0"
47+
"wikimedia/composer-merge-plugin": "^2.1",
48+
"ecotone/dbal": "~1.226.0"
49+
},
50+
"conflict": {
51+
"symfony/proxy-manager-bridge": "<5.4.0"
5052
},
5153
"config": {
5254
"sort-packages": true,
@@ -87,7 +89,7 @@
8789
},
8890
"extra": {
8991
"branch-alias": {
90-
"dev-main": "1.225.0-dev"
92+
"dev-main": "1.226.0-dev"
9193
},
9294
"ecotone": {
9395
"repository": "symfony"

0 commit comments

Comments
 (0)