Download the PHP package adbario/slim-csrf without Composer
On this page you can find all versions of the php package adbario/slim-csrf. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download adbario/slim-csrf
More information about adbario/slim-csrf
Files in adbario/slim-csrf
Package slim-csrf
Short Description CSRF protection for Slim 3 framework
License MIT
Homepage https://github.com/adbario/slim-csrf
Informations about the package slim-csrf
Slim CSRF Protection
Protection against CSRF in Slim 3 framework. Uses Slim Secure Session Middleware to manage session and automatically creates HTML form hidden input for Twig-View and PHP-View.
CSRF protection will be applied to POST, PUT, DELETE and PATCH requests.
Installation
Usage
Depency Container
Inject session helper to application container (read more about session helper):
Inject CSRF protection in application container:
If you use Twig-View or PHP-View:
Other dependencies
CSRF protection needs Slim Secure Session Middleware. Inject settings for session middleware and register it:
Register for all routes
To use CSRF protection on all routes, register it as a middleware before session middleware:
Register per route
To use CSRF protection on specific routes, add it like this:
Twig-View
Ready-to-use HTML form hidden input will be injected in Twig-View, to use it in your view:
PHP-View
Ready-to-use HTML form hidden input will be injected also in Twig-View, to use it in your view:
Other template engines
You can easily use CSRF protection on other template engines as well. Inject to container without view:
Generate HTML hidden input field:
Custom error on CSRF token failure
By default, CSRF protection shows simple message on failure:
You can render a custom template if CSRF token isn't valid, edit container:
If you just want to edit simple message:
License
MIT license
All versions of slim-csrf with dependencies
slim/slim Version ~3.0
adbario/slim-secure-session-middleware Version ~1.3.1