You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
FilterPluginManager extends from zend-filter/FilterPluginManager and overrides $aliases which causes broken alias rename -> filterename which doesn't exist
The text was updated successfully, but these errors were encountered:
This is due to zend-filter 2.6 updating to be forwards-compatible with zend-servicemanager v3. Prior to 2.6, it didn't define aliases, only invokables; to make it forwards-compatible, we split invokables into aliases + factories. Unfortunately, zend-file also defines aliases, which is where the problems occur.
The short term solution is to add the following to the require section of your composer.json:
"zendframework/zend-filter": "^2.5.0"
That will force usage of a zend-filter version from before the forwards-compatibility changes.
I plan to get zend-file updated in the next day or two, however, and, once updated, this will no longer be an issue.
FilterPluginManager extends from zend-filter/FilterPluginManager and overrides $aliases which causes broken alias rename -> filterename which doesn't exist
The text was updated successfully, but these errors were encountered: