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

Commit 2383bed

Browse files
committed
Merge branch 'feature/config-provider' into develop
Close #26
2 parents a20518a + f0afd11 commit 2383bed

File tree

7 files changed

+300
-113
lines changed

7 files changed

+300
-113
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ All notable changes to this project will be documented in this file, in reverse
66

77
### Added
88

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

1118
### Deprecated
1219

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,21 @@
3232
},
3333
"suggest": {
3434
"zendframework/zend-config": "Zend\\Config component",
35-
"zendframework/zend-mvc": "Zend\\Mvc component",
36-
"zendframework/zend-permissions-acl": "Zend\\Permissions\\Acl component",
37-
"zendframework/zend-servicemanager": "Zend\\ServiceManager component",
38-
"zendframework/zend-view": "Zend\\View component"
35+
"zendframework/zend-mvc": "Zend\\Mvc component, to provide dynamic routing capabilities for navigation pages",
36+
"zendframework/zend-permissions-acl": "Zend\\Permissions\\Acl component, to allow restricting access to navigation pages",
37+
"zendframework/zend-servicemanager": "Zend\\ServiceManager component, to use the navigation factories",
38+
"zendframework/zend-view": "Zend\\View component, to use the navigation view helpers"
3939
},
4040
"minimum-stability": "dev",
4141
"prefer-stable": true,
4242
"extra": {
4343
"branch-alias": {
4444
"dev-master": "2.6-dev",
4545
"dev-develop": "2.7-dev"
46+
},
47+
"zf": {
48+
"component": "Zend\\Navigation",
49+
"config-provider": "Zend\\Navigation\\ConfigProvider"
4650
}
4751
},
4852
"autoload-dev": {

0 commit comments

Comments
 (0)