When using the Framework Bundle of Symfony 4.2 with the Serializer Component there are several Normalizers configured automatically by the Framework in a specific order.
I want to replace one of these Normalizers (ObjectNormalizer) with my personal implementation (which is an extension of the ObjectNormalizer) without touching all other provided normalizers or the order of them.
Is there a way to achieve this without redeclaring all normalizers and their order in the Serializer configuration?
Another option would be to make sure my custom Normalizer is directly positioned before the ObjectNormalizer.