csrf.php 243 B

123456789101112
  1. <?php
  2. $container->loadFromExtension('framework', array(
  3. 'csrf_protection' => true,
  4. 'form' => array(
  5. 'enabled' => true,
  6. 'csrf_protection' => true,
  7. ),
  8. 'session' => array(
  9. 'handler_id' => null,
  10. ),
  11. ));