Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[zend-view] update zend-view deps according to usage #178

Merged
merged 2 commits into from
Jan 4, 2024
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
15 changes: 12 additions & 3 deletions packages/zend-view/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@
"require": {
"php": ">=5.3.3",
"ext-reflection": "*",
"zf1s/zend-controller": "^1.15.2",
"zf1s/zend-exception": "^1.15.2",
"zf1s/zend-loader": "^1.15.2",
"zf1s/zend-locale": "^1.15.2",
"zf1s/zend-registry": "^1.15.2"
},
"autoload": {
Expand All @@ -19,8 +17,19 @@
}
},
"suggest": {
"zf1s/zend-controller": "Used in special situations or with special adapters",
"zf1s/zend-config": "Used in special situations or with special adapters",
"zf1s/zend-currency": "Used in special situations or with special adapters",
"zf1s/zend-json": "Used in special situations or with special adapters",
"zf1s/zend-layout": "Used in special situations or with special adapters"
"zf1s/zend-layout": "Used in special situations or with special adapters",
"zf1s/zend-locale": "Used in special situations or with special adapters",
"zf1s/zend-filter": "Used in special situations or with special adapters",
"zf1s/zend-http": "Used in special situations or with special adapters",
"zf1s/zend-navigation": "Used in special situations or with special adapters",
"zf1s/zend-paginator": "Used in special situations or with special adapters",
"zf1s/zend-translate": "Used in special situations or with special adapters",
"zf1s/zend-uri": "Used in special situations or with special adapters",
"zf1s/zend-validate": "Used in special situations or with special adapters"
},
"replace": {
"zf1/zend-view": "^1.12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public function findAllRelations(Zend_Navigation_Page $page,
* @param Zend_Navigation_Page $page page to find relations for
* @param string $rel relation, "rel" or "rev"
* @param string $type link type, e.g. 'start', 'next'
* @return Zend_Navigaiton_Page|array|null page(s), or null if not found
* @return Zend_Navigation_Page|array|null page(s), or null if not found
* @throws Zend_View_Exception if $rel is not "rel" or "rev"
*/
public function findRelation(Zend_Navigation_Page $page, $rel, $type)
Expand Down Expand Up @@ -611,7 +611,7 @@ public function searchRevSubsection(Zend_Navigation_Page $page)
* makes sure finder methods will not traverse above the container given
* to the render method.
*
* @param Zend_Navigaiton_Page $page page to find root for
* @param Zend_Navigation_Page $page page to find root for
* @return Zend_Navigation_Container the root container of the given page
*/
protected function _findRoot(Zend_Navigation_Page $page)
Expand Down
Loading