Skip to content
Snippets Groups Projects
Commit ec633274 authored by Daniel Calviño Sánchez's avatar Daniel Calviño Sánchez
Browse files

Force compatible EventDispatcher version in integration tests


Nextcloud requires EventDispatcher from Symfony 4.4. Behat required
Symfony 4.x until Behat 3.5, but since Behat 3.6 it supports Symfony 5.x
too. However, as the EventDispatcher version was not restricted in the
"composer.json" file Composer installed the latest compatible version
with all the dependencies, which happened to be Symfony 5.x. To prevent
that now the EventDispatcher is explicitly limited to Symfony 4.4 only.

Signed-off-by: default avatarDaniel Calviño Sánchez <danxuliu@gmail.com>
parent 99aa7ada
No related branches found
No related tags found
No related merge requests found
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
"behat/behat": "~3.6.1", "behat/behat": "~3.6.1",
"guzzlehttp/guzzle": "6.5.2", "guzzlehttp/guzzle": "6.5.2",
"jarnaiz/behat-junit-formatter": "^1.3", "jarnaiz/behat-junit-formatter": "^1.3",
"sabre/dav": "3.2.3" "sabre/dav": "3.2.3",
"symfony/event-dispatcher": "~4.4"
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment