Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BC check to CI #60

Merged
merged 2 commits into from
Jun 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
{
"backwardCompatibilityCheck": true
}
12 changes: 6 additions & 6 deletions docs/book/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ $ composer require mezzio/mezzio-session-ext
mezzio-session provides the following:

- Interfaces for:
- session containers
- session persistence
- session containers
- session persistence
- An implementation of the session container.
- A "lazy-loading" implementation of the session container, to allow delaying
any de/serialization and/or I/O processes until session data is requested;
this implementation decorates a normal session container.
- PSR-7 middleware that:
- composes a session persistence implementation.
- initializes the lazy-loading session container, using the session
- composes a session persistence implementation.
- initializes the lazy-loading session container, using the session
persistence implementation.
- delegates to the next middleware, passing the session container into the
- delegates to the next middleware, passing the session container into the
request.
- finalizes the session before returning the response.
- finalizes the session before returning the response.

Persistence implementations locate session information from the requests (e.g.,
via a cookie) in order to initialize the session. On completion of the request,
Expand Down