-
-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for laminas/laminas-servicemanager
v4
#296
Support for laminas/laminas-servicemanager
v4
#296
Conversation
This also introduces support for `laminas/laminas-serializer` v3. Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com>
Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com>
'clear_expired_by_factor' => Plugin\ClearExpiredByFactor::class, | ||
'clearexpiredbyfactor' => Plugin\ClearExpiredByFactor::class, | ||
'clearExpiredByFactor' => Plugin\ClearExpiredByFactor::class, | ||
'ClearExpiredByFactor' => Plugin\ClearExpiredByFactor::class, | ||
'exception_handler' => Plugin\ExceptionHandler::class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any value in keeping all of these aliases alive? Would it not be a good time to get rid of them and force users to reference the required implementation by FQCN?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just BC
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was also thinkin of this but besides the fact that it would provide a benefit to projects with psalm, I think its okayish to keep them. Might be something to consider in next major but I would do that with a better way to configure adapters in total, not just enforcing FQCN here.
Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com>
Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com>
Signed-off-by: Maximilian Bösing <2189546+boesing@users.noreply.github.com>
Description
This also introduces support for
laminas/laminas-serializer
v3 and conflicts withlaminas-serializer
<3.0.PluginOptions#getSerializer
does not create a serializer anymore if astring
was passed beforehand (added to Documentation for v4.0.0 including migration guide #274)