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

Expose component as a config-provider / ZF component #26

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@ All notable changes to this project will be documented in this file, in reverse

### Added

- Nothing.
- [#26](https://github.com/zendframework/zend-navigation/pull/26) adds:
- `Zend\Navigation\View\ViewHelperManagerDelegatorFactory`, which decorates
the `ViewHelperManager` service to configure it using
`Zend\Navigation\View\HelperConfig`.
- `ConfigProvider`, which maps the default navigation factory and the
navigation abstract factory, as well as the navigation view helper.
- `Module`, which does the same as the above, but for zend-mvc
applications.

### Deprecated

Expand Down
12 changes: 8 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,21 @@
},
"suggest": {
"zendframework/zend-config": "Zend\\Config component",
"zendframework/zend-mvc": "Zend\\Mvc component",
"zendframework/zend-permissions-acl": "Zend\\Permissions\\Acl component",
"zendframework/zend-servicemanager": "Zend\\ServiceManager component",
"zendframework/zend-view": "Zend\\View component"
"zendframework/zend-mvc": "Zend\\Mvc component, to provide dynamic routing capabilities for navigation pages",
"zendframework/zend-permissions-acl": "Zend\\Permissions\\Acl component, to allow restricting access to navigation pages",
"zendframework/zend-servicemanager": "Zend\\ServiceManager component, to use the navigation factories",
"zendframework/zend-view": "Zend\\View component, to use the navigation view helpers"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "2.6-dev",
"dev-develop": "2.7-dev"
},
"zf": {
"component": "Zend\\Navigation",
"config-provider": "Zend\\Navigation\\ConfigProvider"
}
},
"autoload-dev": {
Expand Down
Loading