├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── UPGRADE.md ├── composer-require-checker.json ├── composer.json ├── config ├── di-web.php └── params.php ├── psalm80.xml ├── rector.php └── src ├── Flash ├── Flash.php └── FlashInterface.php ├── NullSession.php ├── Session.php ├── SessionException.php ├── SessionInterface.php └── SessionMiddleware.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer-require-checker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/composer-require-checker.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/composer.json -------------------------------------------------------------------------------- /config/di-web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/config/di-web.php -------------------------------------------------------------------------------- /config/params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/config/params.php -------------------------------------------------------------------------------- /psalm80.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/psalm80.xml -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/rector.php -------------------------------------------------------------------------------- /src/Flash/Flash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/src/Flash/Flash.php -------------------------------------------------------------------------------- /src/Flash/FlashInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/src/Flash/FlashInterface.php -------------------------------------------------------------------------------- /src/NullSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/src/NullSession.php -------------------------------------------------------------------------------- /src/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/src/Session.php -------------------------------------------------------------------------------- /src/SessionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/src/SessionException.php -------------------------------------------------------------------------------- /src/SessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/src/SessionInterface.php -------------------------------------------------------------------------------- /src/SessionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiisoft/session/HEAD/src/SessionMiddleware.php --------------------------------------------------------------------------------