infinite-networks / InfiniteFormBundle

A collection of useful form types and extensions for Symfony.
169 stars 40 forks source link

Support for Symfony 7.1 possible? #73

Closed daFish closed 2 months ago

daFish commented 2 months ago

Hello there,

since the release of Symfony 7.1 the class ResizePolyFormListener is no longer compatible with symfony/form as the base class no longer exposes the needed properties and methods. I already tried to make the event listener compatible but failed so far. Any hints how to make it work are greatly appreciated.

jmclean commented 2 months ago

OK, I have released version 3.4.0 with Symfony 7 support. Symfony changed some fields ($this->type etc.) to private, but I was able to copy their values in the ResizePolyFormListener constructor.

daFish commented 2 months ago

Thank you very much, @jmclean. Much appreciated.