This repository was archived by the owner on Jan 31, 2020. It is now read-only.
zend-session 2.7.0
·
350 commits
to master
since this release
Added
- #23 provides a new
Idvalidator to ensure that the session identifier is not malformed. This validator is now enabled by default; to disable it, pass['attach_default_validators' => false]as the fifth argument toSessionManager, or pass anoptionsarray with that value under thesession_managerconfiguration key. - #34 adds the option to use
exporeAfterSecondswith theMongoDBsave handler. - #37 exposes the package as a standalone config-provider/component, adding:
Zend\Session\ConfigProvider, which maps the default services offered by the package, including theContainerAbstractServiceFactory.Zend\Session\Module, which does the same, but for zend-mvc contexts.
Deprecated
- Nothing.
Removed
- Nothing.
Fixed
- #34 updates the component to use ext/mongodb + the MongoDB PHP client library, instead of ext/mongo, for purposes of the
MongoDBsave handler, allowing the component to be used with modern MongoDB installations.