PHP code example of dneustadt / csrf-cookie-bundle
1. Go to this page and download the library: Download dneustadt/csrf-cookie-bundle library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dneustadt / csrf-cookie-bundle example snippets
// src/Controller/Api/ExampleController.php
namespace App\Controller\Api;
// ...
class ExampleController extends AbstractController
{
/**
* @Route("/api/index", methods={"GET","HEAD"}, defaults={"csrf": {"create": true}})
*/
public function index()
{
// ...
}
}