From 70d4d0870ad0077affdd7927857afaab5babd442 Mon Sep 17 00:00:00 2001 From: thomascorthals Date: Wed, 27 Nov 2024 15:32:36 +0100 Subject: [PATCH] Symfony EventDispatcher 7 (#1135) --- composer.json | 2 +- docs/getting-started.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 9b4d3f68f..95e217fff 100755 --- a/composer.json +++ b/composer.json @@ -34,7 +34,7 @@ "phpunit/phpunit": "^9.6", "rawr/phpunit-data-provider": "^3.3", "roave/security-advisories": "dev-master", - "symfony/event-dispatcher": "^5.0 || ^6.0" + "symfony/event-dispatcher": "^5.0 || ^6.0 || ^7.0" }, "prefer-stable": true, "config": { diff --git a/docs/getting-started.md b/docs/getting-started.md index 719181b03..7ac5725da 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -45,7 +45,7 @@ Also you need to make sure that a PSR-14 compatible event dispatcher is availabl { "require": { "solarium/solarium": "~6.3", - "symfony/event-dispatcher": "^5.0 || ^6.0" + "symfony/event-dispatcher": "^5.0 || ^6.0 || ^7.0" } } ``` @@ -156,7 +156,7 @@ Alternatively you can use any [PSR-14](https://www.php-fig.org/psr/psr-14/) comp { "require": { "solarium/solarium": "~6.3", - "symfony/event-dispatcher": "^5.0 || ^6.0" + "symfony/event-dispatcher": "^5.0 || ^6.0 || ^7.0" } } ```