networkteam / sentry_client

TYPO3 Extension for exception logging with sentry, see http://www.getsentry.com
33 stars 36 forks source link

Use `sentry/sentry` instead of `sentry/sdk` #82

Closed derhansen closed 10 months ago

derhansen commented 1 year ago

sentry/sdk bundles an own HTTP client (symfony/http-client), which however is superfluous, since TYPO3 bundles a HTTP client too (guzzle/guzzle).

I therefore suggest to use sentry/sentry, which uses php-http/discover to discover any HTTP clients used by depending packages. For TYPO3, the php-http/guzzle7-adapter will be added to composer.json by the plugin.

christophlehmann commented 10 months ago

Thank you!