Skip to content

Releases: PhpGt/Csrf

Static properties dropped on non-static TokenStore classes

03 Dec 16:08
Compare
Choose a tag to compare

TokenStore classes were currently not programmed in accordance with the StyleGuide (mixed static and non-static members).

This release changes that and is potentially backwards breaking.

Bump dependencies

03 Dec 14:46
a321f32
Compare
Choose a tag to compare

Updated dev dependencies a few times since last release.

Works well with WebEngine

14 Aug 20:51
Compare
Choose a tag to compare

This release mainly contains compatibility enhancements with WebEngine.

The functionality is kept the same, but all post data must be passed into the processAndVerify function, rather than relying on superglobals.

Update Dom namespaces

14 Mar 15:25
Compare
Choose a tag to compare

The PhpGt/Dom repository changed its namespaces to become consistent with the whole of WebEngine. This was a backwards breaking change, which has been fixed in this release.

ArrayTokenStore

28 Feb 22:22
Compare
Choose a tag to compare

The abstract TokenStore class defines how Csrf tokens can be handled. This release includes the ArrayTokenStore mechanism for saving an easily serialisable data structure to your own persistent storage mechanism, such as the session.

Refactoring, CI, docs

08 Dec 21:34
Compare
Choose a tag to compare
Refactoring, CI, docs Pre-release
Pre-release
Merge pull request #36 from PhpGt/35-namespaces

Refactor namespaces for consistency. Closes #35.

Array-based token store for session storage

21 Feb 22:49
Compare
Choose a tag to compare
Merge pull request #1 from j4m3s/master

Initial code