diff --git a/CHANGELOG.md b/CHANGELOG.md index 22a186b1..40949156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,10 @@ All notable changes to this project will be documented in this file, in reverse the HTML5 "as" attribute to the `HeadLink` helper. This can be used to help prioritize resource loading. +- [#139](https://github.com/zendframework/zend-view/pull/139) adds two new + methods to the `Zend\View\Helper\Gravatar` class: `setAttributes()` and + `getAttributes()`. + ### Changed - [#133](https://github.com/zendframework/zend-view/pull/133) modifies the @@ -21,7 +25,9 @@ All notable changes to this project will be documented in this file, in reverse ### Deprecated -- Nothing. +- [#139](https://github.com/zendframework/zend-view/pull/139) deprecates the + `Zend\View\Helper\Gravatar` methods `setAttribs()` and `getAttribs()` in favor + of the new methods `setAttributes()` and `getAttributes()`, respectively. ### Removed diff --git a/composer.json b/composer.json index febe4b06..ed86b611 100644 --- a/composer.json +++ b/composer.json @@ -70,6 +70,9 @@ } }, "autoload-dev": { + "files": [ + "test/autoload.php" + ], "psr-4": { "ZendTest\\View\\": "test/" } diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 6e3bfa65..acf791b0 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -23,6 +23,8 @@ + +