├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── TODO.md ├── composer.json └── src ├── ConfigProvider.php ├── Exception ├── ExceptionInterface.php ├── InvalidHopsValueException.php ├── InvalidSessionSegmentDataException.php ├── NotInitializableException.php └── SessionSegmentConflictException.php ├── InitializePersistenceIdInterface.php ├── InitializeSessionIdInterface.php ├── LazySession.php ├── Session.php ├── SessionCookiePersistenceInterface.php ├── SessionIdentifierAwareInterface.php ├── SessionInterface.php ├── SessionMiddleware.php ├── SessionMiddlewareFactory.php └── SessionPersistenceInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/TODO.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/composer.json -------------------------------------------------------------------------------- /src/ConfigProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/ConfigProvider.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidHopsValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/Exception/InvalidHopsValueException.php -------------------------------------------------------------------------------- /src/Exception/InvalidSessionSegmentDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/Exception/InvalidSessionSegmentDataException.php -------------------------------------------------------------------------------- /src/Exception/NotInitializableException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/Exception/NotInitializableException.php -------------------------------------------------------------------------------- /src/Exception/SessionSegmentConflictException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/Exception/SessionSegmentConflictException.php -------------------------------------------------------------------------------- /src/InitializePersistenceIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/InitializePersistenceIdInterface.php -------------------------------------------------------------------------------- /src/InitializeSessionIdInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/InitializeSessionIdInterface.php -------------------------------------------------------------------------------- /src/LazySession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/LazySession.php -------------------------------------------------------------------------------- /src/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/Session.php -------------------------------------------------------------------------------- /src/SessionCookiePersistenceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/SessionCookiePersistenceInterface.php -------------------------------------------------------------------------------- /src/SessionIdentifierAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/SessionIdentifierAwareInterface.php -------------------------------------------------------------------------------- /src/SessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/SessionInterface.php -------------------------------------------------------------------------------- /src/SessionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/SessionMiddleware.php -------------------------------------------------------------------------------- /src/SessionMiddlewareFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/SessionMiddlewareFactory.php -------------------------------------------------------------------------------- /src/SessionPersistenceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zendframework/zend-expressive-session/HEAD/src/SessionPersistenceInterface.php --------------------------------------------------------------------------------