├── .laminas-ci.json ├── .psr-container.php.stub ├── COPYRIGHT.md ├── LICENSE.md ├── README.md ├── TODO.md ├── composer.json ├── composer.lock ├── renovate.json └── src ├── ConfigProvider.php ├── Exception ├── ExceptionInterface.php ├── InvalidHopsValueException.php ├── InvalidSessionSegmentDataException.php ├── NotInitializableException.php ├── SessionNotInitializedException.php └── SessionSegmentConflictException.php ├── InitializePersistenceIdInterface.php ├── InitializeSessionIdInterface.php ├── LazySession.php ├── Persistence ├── CacheHeadersGeneratorTrait.php ├── Http.php └── SessionCookieAwareTrait.php ├── RetrieveSession.php ├── Session.php ├── SessionCookiePersistenceInterface.php ├── SessionIdentifierAwareInterface.php ├── SessionInterface.php ├── SessionMiddleware.php ├── SessionMiddlewareFactory.php └── SessionPersistenceInterface.php /.laminas-ci.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/.laminas-ci.json -------------------------------------------------------------------------------- /.psr-container.php.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/.psr-container.php.stub -------------------------------------------------------------------------------- /COPYRIGHT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/COPYRIGHT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/TODO.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/composer.lock -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/renovate.json -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidHopsValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Exception/InvalidHopsValueException.php -------------------------------------------------------------------------------- /src/Exception/InvalidSessionSegmentDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Exception/InvalidSessionSegmentDataException.php -------------------------------------------------------------------------------- /src/Exception/NotInitializableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Exception/NotInitializableException.php -------------------------------------------------------------------------------- /src/Exception/SessionNotInitializedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Exception/SessionNotInitializedException.php -------------------------------------------------------------------------------- /src/Exception/SessionSegmentConflictException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Exception/SessionSegmentConflictException.php -------------------------------------------------------------------------------- /src/InitializePersistenceIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/InitializePersistenceIdInterface.php -------------------------------------------------------------------------------- /src/InitializeSessionIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/InitializeSessionIdInterface.php -------------------------------------------------------------------------------- /src/LazySession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/LazySession.php -------------------------------------------------------------------------------- /src/Persistence/CacheHeadersGeneratorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Persistence/CacheHeadersGeneratorTrait.php -------------------------------------------------------------------------------- /src/Persistence/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Persistence/Http.php -------------------------------------------------------------------------------- /src/Persistence/SessionCookieAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Persistence/SessionCookieAwareTrait.php -------------------------------------------------------------------------------- /src/RetrieveSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/RetrieveSession.php -------------------------------------------------------------------------------- /src/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/Session.php -------------------------------------------------------------------------------- /src/SessionCookiePersistenceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/SessionCookiePersistenceInterface.php -------------------------------------------------------------------------------- /src/SessionIdentifierAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/SessionIdentifierAwareInterface.php -------------------------------------------------------------------------------- /src/SessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/SessionInterface.php -------------------------------------------------------------------------------- /src/SessionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/SessionMiddleware.php -------------------------------------------------------------------------------- /src/SessionMiddlewareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/SessionMiddlewareFactory.php -------------------------------------------------------------------------------- /src/SessionPersistenceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mezzio/mezzio-session/HEAD/src/SessionPersistenceInterface.php --------------------------------------------------------------------------------