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 was archived by the owner on Jan 31, 2020. It is now read-only.
Re-enable zend-modulemanager, -mvc, -navigation, and -session tests on Travis
Now that each of zend-modulemanager, zend-mvc, zend-navigation, and
zend-session have known-stable, forwards-compatible versions available,
we can re-enable tests against them on Travis.
Doing so exposed some areas where the tests and/or SUTs were not yet
correct. These included:
- `Zend\View\Helper\Navigation\AbstractHelper` relied on having a shared
event manager composed in its event manager, but when lazy-loaded,
this does not happen under zend-eventmanager v3. As such, code was
added to ensure a shared manager is always present.
- The `FlashMessengerFactory` was still pulling the configuration
services using the v2 `Config` instead of `config`.
- The `HelperPluginManager` was missing an `EventManagerAware`
initializer; one was added.
- Navigation helper tests were updated to inject a service locator where
required.
Copy file name to clipboardExpand all lines: .travis.yml
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,6 @@ before_install:
53
53
- if [[ $ZEND_EVENTMANAGER_VERSION == '' ]]; then composer require --no-update "zendframework/zend-eventmanager:^3.0" ; fi
54
54
- if [[ $ZEND_SERVICEMANAGER_VERSION != '' ]]; then composer require --dev --no-update "zendframework/zend-servicemanager:$ZEND_SERVICEMANAGER_VERSION" ; fi
55
55
- if [[ $ZEND_SERVICEMANAGER_VERSION == '' ]]; then composer require --dev --no-update "zendframework/zend-servicemanager:^3.0.3" ; fi
56
-
- if [[ $ZEND_SERVICEMANAGER_VERSION == '' ]]; then composer remove --dev --no-update zendframework/zend-modulemanager zendframework/zend-mvc zendframework/zend-session ; fi
0 commit comments