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

Expressive Plates Renderer 1.2.0

Choose a tag to compare

@weierophinney weierophinney released this 11 Jan 17:05
· 163 commits to master since this release

Added

  • #11 adds support for zend-expressive-helpers 3.0.0 (and, consequently, zend-expressive-router 2.0.0). Users may now pass additional arguments to the url() helper:

    echo $this->url(
        $routeName,         // (optional) string route name; omit to use current matched route
        $routeParams,       // (optional) array of route parameter substitutions
        $queryParams,       // (optional) array of query string parameters to include
        $fragmentIdentifer, // (optional) string fragment to include
        $options,           // (optional) array of options; `router` array will be
                            // passed to the router, `reuse_result_params` can be
                            // passed to disable reuse of matched route parameters.
    );

    If you are still using the zend-expressive-helpers 2.2 series and/or zend-expressive-router 1.0 series, all parameters provided after the $routeParams will be ignored.

Deprecated

  • Nothing.

Removed

  • #14 removes support for PHP 5.5.

Fixed

  • Nothing.