This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
zend-config 2.6.0
weierophinney
released this
04 Feb 23:03
·
223 commits
to master
since this release
Added
- #6 adds the ability for the
PhpArray
writer to optionally translate strings that evaluate to known classes toClassName::class
syntax; the feature works for both keys and values. - #21 adds revised documentation, and publishes it to https://zendframework.github.io/zend-config/
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #8, #18, and #20 update the code base to make it forwards-compatible with the v3.0 versions of zend-stdlib and zend-servicemanager. Primarily, this involved:
- Updating the
AbstractConfigFactory
to implement the new methods in the v3AbstractFactoryInterface
definition, and updating the v2 methods to proxy to those. - Updating
ReaderPluginManager
andWriterPluginManager
to follow the changes toAbstractPluginManager
. In particular, instead of defining invokables, they now define a combination of aliases and factories (using the newInvokableFactory
); additionally, they each now implement bothvalidatePlugin()
from v2 andvalidate()
from v3. - Pinning to stable versions of already updated components.
- Selectively omitting zend-i18n-reliant tests when testing against zend-servicemanager v3.
- Updating the