-
-
Notifications
You must be signed in to change notification settings - Fork 462
Closed
Description
Problem Statement
I would like to know which PHP frameworks are people using with our sentry/sdk so we can make a better informed decisions on which frameworks to support more and when.
We already have a modules integration which is opt in and very few people know about it, hence few of them are actually using it. So the information we get from there are not sufficient enough to drive any meaningful decisions.
Solution Brainstorm
- create a list of top 10 php frameworks
- on
sentry.init()check whether users framework is in one of top 10- ideally, we should find alternative/better methods to discover a framework and fallback to
composer.jsonas a last resort in order to minimise the impact on customers overhead.
- ideally, we should find alternative/better methods to discover a framework and fallback to
- utilise the same
modulesobject on event payload to store the framework like:
'modules' => [
'some/framework' => '1.2.3', // if version is unknown to us, use unknown
...
]