- Doctrine annotation support has been removed. Replace all annotation usages with PHP 8 attributes:
@Legacy\Dispatch→#[Legacy\Dispatch]@Legacy\Passthru→#[Legacy\Passthru]@Legacy\IgnoreRedirect→#[Legacy\IgnoreRedirect]@Legacy\IgnoreHeader("some-name")→#[Legacy\IgnoreHeader('some-name')]@Legacy\KeepHeaders→#[Legacy\KeepHeaders]@Legacy\KeepCookies→#[Legacy\KeepCookies]@Legacy\Filter(class="...")→#[Legacy\Filter(class: '...')]
- The
doctrine/annotationspackage is no longer required. - PHP 8.0 is now the minimum required version.
- Add support for PHP 8 attributes.
- The webfactory.integration.filter tag has been renamed to "webfactory_legacy_integration.filter"