Missing php-http/message-factory package
zpevma opened this issue · 1 comments
zpevma commented
Current install script relies that php-http/message-factory package
package is installed as dependency for sentry/sentry
(which is installed with sentry/sdk
, specified explicitly in misp_install.sh
:
Line 67 in 8068469
The problem is that with new version of sentry 4.0.0 (released on 2023-11-06), php-http/message-factory package
is no longer required as dependency. This results in broken workers/supervisor monitoring:
Error: Error getting supervisor status.
[LogicException] You cannot use "Http\Message\MessageFactory\GuzzleMessageFactory" as the "php-http/message-factory" package is not installed. Try running "composer require php-http/message-factory". Note that this package is deprecated, use "psr/http-factory" instead
Possible solutions:
- specify
sentry/sdk
version <4.0.0. - install
php-http/message-factory package
explicitly