-
Notifications
You must be signed in to change notification settings - Fork 196
Add docs for extension config parameter for zend view renderer #664
base: master
Are you sure you want to change the base?
Conversation
@@ -505,6 +506,8 @@ It consumes the following `config` structure: | |||
] | |||
``` | |||
|
|||
- `extension` parameter available since `zendframework/zend-expressive-zendviewrenderer` 2.2.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you set the version at the beginning?
Since 2.2.0:
extension
parameter...
This would be consistent with most version informations in the documentation. Thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wouldn't it be confusing since this is zend-expressive documentation and release mentioned is from different package?
- `extension` parameter available since `zendframework/zend-expressive-zendviewrenderer` 2.2.0 | |
- Since ZendViewRenderer 2.2.0: `extension` parameter is used to configure default suffix in NamespacedPathStackResolver |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is an issue open for splitting the documentation: #594
This repository has been closed and moved to mezzio/mezzio; a new issue has been opened at mezzio/mezzio#2. |
This repository has been moved to mezzio/mezzio. If you feel that this patch is still relevant, please re-open against that repository, and reference this issue. To re-open, we suggest the following workflow:
|
Provide a narrative description of what you are trying to accomplish:
2.2.0 release of
zendframework/zend-expressive-zendviewrenderer
adds support forextension
parameter for default suffix to be used by zend-view resolver, in line with other template renderers.Add documentation entry for
extension
config parameter.