Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

zend-modulemanager 2.7.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 25 Feb 18:25
· 201 commits to master since this release

Added

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • #13 and #28 update the component to be forwards-compatible with zend-servicemanager v3. This primarily affects how configuration is aggregated within the ServiceListener (as v3 has a dedicated method in the Zend\ServiceManager\ConfigInterface for retrieving it).
  • #12, #28, and #29 update the component to be forwards-compatible with zend-eventmanager v3. Primarily, this involves:
    • Changing trigger calls to triggerEvent() and/or triggerEventUntil(), and ensuring the event instance is injected with the new event name prior.
    • Ensuring aggregates are attached using the $aggregate->attach($events) signature instead of the $events->attachAggregate($aggregate) signature.
    • Using zend-eventmanager's EventListenerIntrospectionTrait to test that listeners are attached at expected priorities.