diff options
Diffstat (limited to 'Csrf/README.md')
-rw-r--r-- | Csrf/README.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Csrf/README.md b/Csrf/README.md new file mode 100644 index 0000000..95a1062 --- /dev/null +++ b/Csrf/README.md @@ -0,0 +1,21 @@ +Security Component - CSRF +========================= + +The Security CSRF (cross-site request forgery) component provides a class +`CsrfTokenManager` for generating and validating CSRF tokens. + +Resources +--------- + +Documentation: + +http://symfony.com/doc/2.5/book/security.html + +Tests +----- + +You can run the unit tests with the following command: + + $ cd path/to/Symfony/Component/Security/Csrf/ + $ composer.phar install --dev + $ phpunit |